diff options
author | Jakub Jelinek <jakub@redhat.com> | 2009-01-08 10:27:05 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2009-01-08 10:27:05 +0000 |
commit | 23a4b43d6a98912d505458daeced44b22830a773 (patch) | |
tree | 52de9567f933ce28d8def6e6eca3e6988e8004bf /hurd | |
parent | e3e60f6bdc80109e6cfbd092049a4bbb2f43c457 (diff) | |
download | glibc-23a4b43d6a98912d505458daeced44b22830a773.tar glibc-23a4b43d6a98912d505458daeced44b22830a773.tar.gz glibc-23a4b43d6a98912d505458daeced44b22830a773.tar.bz2 glibc-23a4b43d6a98912d505458daeced44b22830a773.zip |
Updated to fedora-glibc-20090108T1017cvs/fedora-glibc-2_9_90-2
Diffstat (limited to 'hurd')
-rw-r--r-- | hurd/hurdsig.c | 1 | ||||
-rw-r--r-- | hurd/report-wait.c | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/hurd/hurdsig.c b/hurd/hurdsig.c index 27050c99d9..7a6b1d50c4 100644 --- a/hurd/hurdsig.c +++ b/hurd/hurdsig.c @@ -1134,6 +1134,7 @@ signal_allowed (int signo, mach_port_t refport) } _hurd_port_free (&_hurd_dtable[d]->port, &ulink, port); } + __mutex_unlock (&_hurd_dtable_lock); /* If we found a lucky winner, we've set D to -1 in the loop. */ if (lucky) goto win; diff --git a/hurd/report-wait.c b/hurd/report-wait.c index 296b2eec42..f6e48f951e 100644 --- a/hurd/report-wait.c +++ b/hurd/report-wait.c @@ -1,5 +1,5 @@ /* Report on what a thread in our task is waiting for. - Copyright (C) 1996,1997,1999,2002,2005 Free Software Foundation, Inc. + Copyright (C) 1996,1997,1999,2002,2005,2009 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -30,7 +30,7 @@ static char * describe_number (string_t description, const char *flavor, long int i) { unsigned long int j; - char *p = flavor ? description : __stpcpy (description, flavor); + char *p = flavor == NULL ? description : __stpcpy (description, flavor); char *end; /* Handle sign. */ |