diff options
author | Ulrich Drepper <drepper@redhat.com> | 2005-10-02 15:40:54 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2005-10-02 15:40:54 +0000 |
commit | b71ce91003685ef4effea831b6f9e77693d8d580 (patch) | |
tree | f4df9682640018c2a099878255d51c178de7d776 /nptl/allocatestack.c | |
parent | dff9a7a163e9f5e28f36f9a701acf74f8f9d7968 (diff) | |
download | glibc-b71ce91003685ef4effea831b6f9e77693d8d580.tar.gz glibc-b71ce91003685ef4effea831b6f9e77693d8d580.tar.xz glibc-b71ce91003685ef4effea831b6f9e77693d8d580.zip |
* allocatestack.c (setxid_signal_thread): Need to use
atomic_compare_and_exchange_bool_acq.
Diffstat (limited to 'nptl/allocatestack.c')
-rw-r--r-- | nptl/allocatestack.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nptl/allocatestack.c b/nptl/allocatestack.c index bb27c180e6..f0dddf051d 100644 --- a/nptl/allocatestack.c +++ b/nptl/allocatestack.c @@ -834,8 +834,8 @@ setxid_signal_thread (struct xid_command *cmdp, struct pthread *t) if ((ch & EXITING_BITMASK) != 0) return; } - while (atomic_compare_and_exchange_val_acq (&t->cancelhandling, - ch | SETXID_BITMASK, ch)); + while (atomic_compare_and_exchange_bool_acq (&t->cancelhandling, + ch | SETXID_BITMASK, ch)); } int val; |