Home
last modified time | relevance | path

Searched refs:_job_tid (Results 1 – 1 of 1) sorted by relevance

/packages/services/BuiltInPrintService/jni/lib/
Dlib_wprint.c190 static pthread_t _job_tid; variable
1324 _job_tid = pthread_self(); in _start_thread()
1334 result = pthread_create(&_job_tid, 0, _job_thread, NULL); in _start_thread()
1335 if ((result == ERROR) && (_job_tid != pthread_self())) { in _start_thread()
1337 pthread_cancel(_job_tid); in _start_thread()
1339 pthread_kill(_job_tid, SIGKILL); in _start_thread()
1341 _job_tid = pthread_self(); in _start_thread()
1361 if (!pthread_equal(_job_tid, pthread_self())) { in _stop_thread()
1362 pthread_join(_job_tid, 0); in _stop_thread()
1363 _job_tid = pthread_self(); in _stop_thread()