diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-04-03 18:53:31 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-04-03 18:53:31 +0000 |
commit | ff4d6f1bd55896bdda546bacd9689dbfb24ecacf (patch) | |
tree | cdcb38551f9c564dca26af46aa0a52c8464b5a67 /sysdeps/unix/sysv | |
parent | 148bb057a01d766e2a8ab9fb77ba821a9e0bf648 (diff) | |
download | glibc-ff4d6f1bd55896bdda546bacd9689dbfb24ecacf.tar glibc-ff4d6f1bd55896bdda546bacd9689dbfb24ecacf.tar.gz glibc-ff4d6f1bd55896bdda546bacd9689dbfb24ecacf.tar.bz2 glibc-ff4d6f1bd55896bdda546bacd9689dbfb24ecacf.zip |
Update.
2003-04-03 Jakub Jelinek <jakub@redhat.com>
* pthread.c (pthread_initialize): Unblock __pthread_sig_cancel
in case the parent blocked it.
Diffstat (limited to 'sysdeps/unix/sysv')
-rw-r--r-- | sysdeps/unix/sysv/linux/getsysstats.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/getsysstats.c b/sysdeps/unix/sysv/linux/getsysstats.c index 71e90fefb1..69dabd165b 100644 --- a/sysdeps/unix/sysv/linux/getsysstats.c +++ b/sysdeps/unix/sysv/linux/getsysstats.c @@ -85,7 +85,7 @@ get_proc_path (char *buffer, size_t bufsize) /* Now store the copied value. But do it atomically. */ assert (sizeof (long int) == sizeof (void *__unbounded)); - if (! atomic_compare_and_exchange_bool_acq (&mount_proc, copy_result, NULL)) + if (atomic_compare_and_exchange_bool_acq (&mount_proc, copy_result, NULL)) /* Replacing the value failed. This means another thread was faster and we don't need the copy anymore. */ free (copy_result); |