diff options
Diffstat (limited to 'sysdeps/l4/pt-wakeup.c')
-rw-r--r-- | sysdeps/l4/pt-wakeup.c | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/sysdeps/l4/pt-wakeup.c b/sysdeps/l4/pt-wakeup.c index 342a2204..7ecc938d 100644 --- a/sysdeps/l4/pt-wakeup.c +++ b/sysdeps/l4/pt-wakeup.c @@ -21,9 +21,27 @@ #include <pt-internal.h> +#include <hurd/stddef.h> + /* Wakeup THREAD. */ void __pthread_wakeup (struct __pthread *thread) { - l4_send (thread->threadid); + debug (5, "%x.%x waking %x.%x", + l4_thread_no (l4_myself ()), l4_version (l4_myself ()), + l4_thread_no (thread->threadid), l4_version (thread->threadid)); + + l4_msg_tag_t tag = l4_send (thread->threadid); + if (l4_ipc_failed (tag)) + { + int err = l4_error_code (); + debug (1, "%x.%x failed to wake %x.%x: %s (%d)", + l4_thread_no (l4_myself ()), l4_version (l4_myself ()), + l4_thread_no (thread->threadid), l4_version (thread->threadid), + l4_strerror (err), err); + } + else + debug (5, "%x.%x woke %x.%x", + l4_thread_no (l4_myself ()), l4_version (l4_myself ()), + l4_thread_no (thread->threadid), l4_version (thread->threadid)); } |