diff options
author | Neal H. Walfield <neal@gnu.org> | 2007-12-23 14:39:42 +0000 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gnu.org> | 2009-04-07 23:11:45 +0200 |
commit | 580da795e84996d81b3db9ef1878d8569a4b9530 (patch) | |
tree | c60bd39e78c035d04de3ba4ab4cab06a3b173f25 /sysdeps/l4/pt-block.c | |
parent | b8a2f5eb1724f9025cb4e34b7dd42351bb4f2cef (diff) |
2007-12-23 Neal H. Walfield <neal@gnu.org>
* Makefile.am (AM_CPPFLAGS): Add "-std=gnu99 -Wall -g -O3".
* sysdeps/l4/pt-block.c (__pthread_block): Remove unused variable
err.
* pthread/pt-join.c (pthread_join): Cast argument to
pthread_cleanup_push to avoid warning.
Diffstat (limited to 'sysdeps/l4/pt-block.c')
-rw-r--r-- | sysdeps/l4/pt-block.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/sysdeps/l4/pt-block.c b/sysdeps/l4/pt-block.c index e92ce91..69e1d35 100644 --- a/sysdeps/l4/pt-block.c +++ b/sysdeps/l4/pt-block.c @@ -35,7 +35,6 @@ __pthread_block (struct __pthread *thread) l4_msg_tag_t tag = l4_receive (l4_anythread); if (l4_ipc_failed (tag)) { - int err = l4_error_code (); debug (1, "%x.%x failed to block: %d, offset: %x", l4_thread_no (l4_myself ()), l4_version (l4_myself ()), (l4_error_code () >> 1) & 0x7, |