Searched refs:send_tid (Results 1 – 1 of 1) sorted by relevance
75 pthread_t send_tid; member163 param->send_tid = pthread_self(); in _start_thread()173 result = (status_t) pthread_create(&(param->send_tid), 0, _send_thread, (void *) param); in _start_thread()174 if ((result == ERROR) && (param->send_tid != pthread_self())) { in _start_thread()176 pthread_cancel(param->send_tid); in _start_thread()178 pthread_kill(param->send_tid, SIGKILL); in _start_thread()180 param->send_tid = pthread_self(); in _start_thread()203 if (!pthread_equal(priv->send_tid, pthread_self())) { in _stop_thread()209 pthread_join(priv->send_tid, 0); in _stop_thread()210 priv->send_tid = pthread_self(); in _stop_thread()[all …]