From 3df3d4f5127a15c1237006d22f948b430f9dbe7e Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Fri, 1 Apr 2011 20:48:02 -0400 Subject: fix misspelled PTHREAD_CANCELED constant --- src/thread/pthread_create.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/thread/pthread_create.c') diff --git a/src/thread/pthread_create.c b/src/thread/pthread_create.c index 18ee64d6..7cd57d8e 100644 --- a/src/thread/pthread_create.c +++ b/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); -- cgit v1.2.1