Fix typo.

This commit is contained in:
David Xu 2003-07-02 13:23:03 +00:00
parent 0be33d3321
commit eb2bb9e574
2 changed files with 2 additions and 2 deletions

View file

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

View file

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