X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/e3027f41d0120b4278cca462f397b6619dcd9ac5..0b4e3aa066abc0728aacb4bbeb86f53f9737156e:/bsd/netinet6/natpt_tslot.c?ds=inline diff --git a/bsd/netinet6/natpt_tslot.c b/bsd/netinet6/natpt_tslot.c index c8beef536..b3fd9e937 100644 --- a/bsd/netinet6/natpt_tslot.c +++ b/bsd/netinet6/natpt_tslot.c @@ -713,7 +713,7 @@ _expireTSlot(void *ignored_arg) struct timeval atv; #ifdef __APPLE__ boolean_t funnel_state; - funnel_state = thread_set_funneled(TRUE); + funnel_state = thread_funnel_set(network_flock, TRUE); #endif timeout(_expireTSlot, (caddr_t)0, tSlotTimer); @@ -721,7 +721,7 @@ _expireTSlot(void *ignored_arg) _expireTSlotEntry(&atv); #ifdef __APPLE__ - (void) thread_set_funneled(funnel_state); + (void) thread_funnel_set(network_flock, FALSE); #endif }