diff options
author | Ulrich Drepper <drepper@redhat.com> | 2006-02-15 17:20:33 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2006-02-15 17:20:33 +0000 |
commit | 683040c3b2c7dc2bc08045202a0a0b46d143b3cb (patch) | |
tree | fcd73510f2bcfcdf57078331d800db4217db759b /nptl/descr.h | |
parent | b007ce7cc6971e4bd4cd91c558efd3d4603d941d (diff) | |
download | glibc-683040c3b2c7dc2bc08045202a0a0b46d143b3cb.tar glibc-683040c3b2c7dc2bc08045202a0a0b46d143b3cb.tar.gz glibc-683040c3b2c7dc2bc08045202a0a0b46d143b3cb.tar.bz2 glibc-683040c3b2c7dc2bc08045202a0a0b46d143b3cb.zip |
* sysdeps/unix/sysv/linux/not-cancel.h (__openat_not_cancel,
__openat64_not_cancel): Remove prototypes.
(__openat_nocancel, __openat64_nocancel): New prototypes or defines.
(openat_not_cancel, openat_not_cancel_3, openat64_not_cancel,
openat64_not_cancel_3): Use them.
Diffstat (limited to 'nptl/descr.h')
-rw-r--r-- | nptl/descr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nptl/descr.h b/nptl/descr.h index 6984138537..d5491c1355 100644 --- a/nptl/descr.h +++ b/nptl/descr.h @@ -166,7 +166,7 @@ struct pthread do { \ __pthread_slist_t *runp = THREAD_GETMEM (THREAD_SELF, robust_list.__next);\ if (runp == &mutex->__data.__list) \ - THREAD_SETMEM (THREAD_SELF, robust_list, runp->__next); \ + THREAD_SETMEM (THREAD_SELF, robust_list.__next, runp->__next); \ else \ { \ while (runp->__next != &mutex->__data.__list) \ |