mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fix typo.
This commit is contained in:
parent
0be33d3321
commit
eb2bb9e574
2 changed files with 2 additions and 2 deletions
|
|
@ -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 a new issue