Browse Source

fix misspelled PTHREAD_CANCELED constant

Rich Felker 14 years ago
parent
commit
3df3d4f512
2 changed files with 2 additions and 2 deletions
  1. 1 1
      include/pthread.h
  2. 1 1
      src/thread/pthread_create.c

+ 1 - 1
include/pthread.h

@@ -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)

+ 1 - 1
src/thread/pthread_create.c

@@ -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);