提交 3df3d4f5 编写于 作者: R Rich Felker

fix misspelled PTHREAD_CANCELED constant

上级 c1f15004
......@@ -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);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册