pike.git
/
src
/
modules
/
_Protocols_DNS_SD
/
sd.c
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/modules/_Protocols_DNS_SD/sd.c:283:
} static void * howl_thread(void *arg) { sw_discovery_run(service_session); return NULL; }
-
static void init_howl_module()
+
static void init_howl_module(
void
)
{ if (sw_discovery_init(&service_session) == SW_OKAY) { th_create_small(&service_thread, howl_thread, NULL); } }
-
static void exit_howl_module()
+
static void exit_howl_module(
void
)
{ /* Close active session */ if (service_session) sw_discovery_fina(service_session); /* Kill Howl thread if running */ if (service_thread) th_kill(service_thread, SIGCHLD); }