#ifdef __APPLE__
boolean_t funnel_state;
- funnel_state = thread_set_funneled(TRUE);
+ funnel_state = thread_funnel_set(network_flock, TRUE);
#endif
/* Go through the entire output queue and send all packets that
have not been sent. */
hz * (MIP6_OUTQ_INTERVAL/10));
}
#ifdef __APPLE__
- (void) thread_set_funneled(funnel_state);
+ (void) thread_funnel_set(network_flock, FALSE);
#endif
}
#endif
#ifdef __APPLE__
boolean_t funnel_state;
- funnel_state = thread_set_funneled(TRUE);
+ funnel_state = thread_funnel_set(network_flock, TRUE);
#endif
/* Go through the entire BUL and check if any BU have to be sent. */
}
splx(s);
#ifdef __APPLE__
- (void) thread_set_funneled(funnel_state);
+ (void) thread_funnel_set(network_flock, FALSE);
#endif
}
int s, start_timer;
#ifdef __APPLE__
boolean_t funnel_state;
- funnel_state = thread_set_funneled(TRUE);
+ funnel_state = thread_funnel_set(network_flock, TRUE);
#endif
/* Go through the entire list of event-state machines. */
}
splx(s);
#ifdef __APPLE__
- (void) thread_set_funneled(funnel_state);
+ (void) thread_funnel_set(network_flock, FALSE);
#endif
}