Fix typo.
This commit is contained in:
parent
ceee3c7367
commit
7bd396d912
@ -75,7 +75,7 @@ _pthread_cancel(pthread_t pthread)
|
||||
pthread->cancelflags |= THR_CANCELLING;
|
||||
_thr_setrunnable_unlocked(pthread);
|
||||
if ((joinee != NULL) &&
|
||||
(curthread->kseg == joinee->kseg)) {
|
||||
(pthread->kseg == joinee->kseg)) {
|
||||
/* Remove the joiner from the joinee. */
|
||||
joinee->joiner = NULL;
|
||||
joinee = NULL;
|
||||
|
@ -75,7 +75,7 @@ _pthread_cancel(pthread_t pthread)
|
||||
pthread->cancelflags |= THR_CANCELLING;
|
||||
_thr_setrunnable_unlocked(pthread);
|
||||
if ((joinee != NULL) &&
|
||||
(curthread->kseg == joinee->kseg)) {
|
||||
(pthread->kseg == joinee->kseg)) {
|
||||
/* Remove the joiner from the joinee. */
|
||||
joinee->joiner = NULL;
|
||||
joinee = NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user