mirror of
git://git.musl-libc.org/musl
synced 2025-03-06 20:48:29 +01:00
fix misspelled PTHREAD_CANCELED constant
This commit is contained in:
parent
c1f1500433
commit
3df3d4f512
2 changed files with 2 additions and 2 deletions
|
@ -65,7 +65,7 @@ extern "C" {
|
|||
#define PTHREAD_CANCEL_DEFERRED 0
|
||||
#define PTHREAD_CANCEL_ASYNCHRONOUS 1
|
||||
|
||||
#define PTHREAD_CANCELLED ((void *)-1)
|
||||
#define PTHREAD_CANCELED ((void *)-1)
|
||||
|
||||
|
||||
#define PTHREAD_BARRIER_SERIAL_THREAD (-1)
|
||||
|
|
|
@ -13,7 +13,7 @@ void __pthread_unwind_next(struct __ptcb *cb)
|
|||
if (cb->__next) longjmp((void *)cb->__next->__jb, 1);
|
||||
|
||||
self = pthread_self();
|
||||
if (self->cancel) self->result = PTHREAD_CANCELLED;
|
||||
if (self->cancel) self->result = PTHREAD_CANCELED;
|
||||
|
||||
LOCK(&self->exitlock);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue