diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-11-19 09:34:35 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2023-11-19 09:35:03 +0100 |
commit | 1754dce141db6f79dbdc4f616f9d85204758b3fb (patch) | |
tree | 3403dedaf005ac69530bef607918b8857c259003 /ipc/mach_msg.c | |
parent | 383379ae770fd6a74c592006f46986320df9fa30 (diff) | |
download | gnumach-1754dce141db6f79dbdc4f616f9d85204758b3fb.tar.gz gnumach-1754dce141db6f79dbdc4f616f9d85204758b3fb.tar.bz2 gnumach-1754dce141db6f79dbdc4f616f9d85204758b3fb.zip |
ipc_entry_lookup_failed: Also write message id in bogus port warning
It may be enough to get an idea of the origin of the port without having
to produce a stack trace.
Diffstat (limited to 'ipc/mach_msg.c')
-rw-r--r-- | ipc/mach_msg.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ipc/mach_msg.c b/ipc/mach_msg.c index abeeb643..6194ef7b 100644 --- a/ipc/mach_msg.c +++ b/ipc/mach_msg.c @@ -496,7 +496,7 @@ mach_msg_trap( entry = ipc_entry_lookup (space, reply_name); if (entry == IE_NULL) { - ipc_entry_lookup_failed (reply_name); + ipc_entry_lookup_failed (msg, reply_name); goto abort_request_copyin; } reply_port = (ipc_port_t) entry->ie_object; @@ -512,7 +512,7 @@ mach_msg_trap( entry = ipc_entry_lookup (space, dest_name); if (entry == IE_NULL) { - ipc_entry_lookup_failed (dest_name); + ipc_entry_lookup_failed (msg, dest_name); goto abort_request_copyin; } bits = entry->ie_bits; @@ -627,7 +627,7 @@ mach_msg_trap( entry = ipc_entry_lookup (space, dest_name); if (entry == IE_NULL) { - ipc_entry_lookup_failed (dest_name); + ipc_entry_lookup_failed (msg, dest_name); goto abort_reply_dest_copyin; } @@ -678,7 +678,7 @@ mach_msg_trap( entry = ipc_entry_lookup (space, rcv_name); if (entry == IE_NULL) { - ipc_entry_lookup_failed (rcv_name); + ipc_entry_lookup_failed (msg, rcv_name); goto abort_reply_rcv_copyin; } bits = entry->ie_bits; |