Lines Matching refs:tid
44 pthread_t tid; member
124 pthread_t tid; in smbd_pipesvc_start() local
145 rc = pthread_create(&tid, &tattr, pipesvc_listener, pl); in smbd_pipesvc_start()
148 pipe_listeners[i].tid = tid; in smbd_pipesvc_start()
167 if (pipe_listeners[i].tid == 0) in smbd_pipesvc_stop()
169 (void) pthread_kill(pipe_listeners[i].tid, SIGTERM); in smbd_pipesvc_stop()
170 pipe_listeners[i].tid = 0; in smbd_pipesvc_stop()
182 pthread_t tid; in pipesvc_listener() local
237 rc = pthread_create(&tid, NULL, pipesvc_worker, np); in pipesvc_listener()
244 (void) pthread_detach(tid); in pipesvc_listener()
252 pl->tid = 0; in pipesvc_listener()