Lines Matching refs:tid
47 pthread_t tid; member
127 pthread_t tid; in smbd_pipesvc_start() local
148 rc = pthread_create(&tid, &tattr, pipesvc_listener, pl); in smbd_pipesvc_start()
151 pipe_listeners[i].tid = tid; in smbd_pipesvc_start()
170 if (pipe_listeners[i].tid == 0) in smbd_pipesvc_stop()
172 (void) pthread_kill(pipe_listeners[i].tid, SIGTERM); in smbd_pipesvc_stop()
173 pipe_listeners[i].tid = 0; in smbd_pipesvc_stop()
185 pthread_t tid; in pipesvc_listener() local
240 rc = pthread_create(&tid, NULL, pipesvc_worker, np); in pipesvc_listener()
247 (void) pthread_detach(tid); in pipesvc_listener()
255 pl->tid = 0; in pipesvc_listener()