fix misspelled PTHREAD_CANCELED constant
authorRich Felker <dalias@aerifal.cx>
Sat, 2 Apr 2011 00:48:02 +0000 (20:48 -0400)
committerRich Felker <dalias@aerifal.cx>
Sat, 2 Apr 2011 00:48:02 +0000 (20:48 -0400)
include/pthread.h
src/thread/pthread_create.c

index 7633366..43754dd 100644 (file)
@@ -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)
index 18ee64d..7cd57d8 100644 (file)
@@ -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);