Home
last modified time | relevance | path

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

/external/ltp/testcases/kernel/mem/mtest07/
Dshm_test.c87 pthread_t threadid; member
330 (&chld_args[i].threadid, NULL, shmat_rd_wr, &chld_args[i])) { in main()
338 (&chld_args[i + 1].threadid, NULL, shmat_rd_wr, &chld_args[i + 1])) { in main()
347 if (pthread_join(chld_args[i].threadid, &th_status) != 0) { in main()
355 (long)chld_args[i].threadid); in main()
/external/python/cpython2/Python/
Dthread_pth.h69 volatile pth_t threadid; in PyThread_get_thread_ident() local
73 threadid = pth_self(); in PyThread_get_thread_ident()
74 return (long) *(long *) &threadid; in PyThread_get_thread_ident()
Dthread_pthread.h229 volatile pthread_t threadid; in PyThread_get_thread_ident() local
233 threadid = pthread_self(); in PyThread_get_thread_ident()
235 return (long) threadid; in PyThread_get_thread_ident()
237 return (long) *(long *) &threadid; in PyThread_get_thread_ident()
/external/python/cpython3/Python/
Dthread_pthread.h315 volatile pthread_t threadid; in PyThread_get_thread_ident() local
318 threadid = pthread_self(); in PyThread_get_thread_ident()
319 return (unsigned long) threadid; in PyThread_get_thread_ident()
/external/boringssl/src/include/openssl/
Dthread.h140 void (*threadid_func)(CRYPTO_THREADID *threadid));
/external/scapy/scapy/
Dautomaton.py634 self.threadid = None
711 self.threadid = threading.currentThread().ident
727 self.debug(3, "Starting control thread [tid=%i]" % self.threadid)
759 …self.debug(3, "Transfering exception from tid=%i:\n%s"% (self.threadid, traceback.format_exception…
762 self.debug(3, "Stopping control thread (tid=%i)"%self.threadid)
763 self.threadid = None
/external/stressapptest/src/
Dworker.h542 virtual bool SpawnSlave(int newsock, int threadid);
Dworker.cc2262 bool NetworkListenThread::SpawnSlave(int newsock, int threadid) { in SpawnSlave() argument
2268 child_worker->thread.InitThread(threadid, sat_, os_, patternlist_, in SpawnSlave()
/external/dlmalloc/
Dmalloc.c1916 THREAD_ID_T threadid; member
1935 lk->threadid = mythreadid; in recursive_acquire_lock()
1940 else if (EQ_OWNER(lk->threadid, mythreadid)) { in recursive_acquire_lock()
1954 lk->threadid = mythreadid; in recursive_try_lock()
1959 else if (EQ_OWNER(lk->threadid, mythreadid)) { in recursive_try_lock()
1969 #define INITIAL_LOCK(lk) ((lk)->threadid = (THREAD_ID_T)0, (lk)->sl = 0, (lk)->c = 0)
/external/sqlite/dist/
Dsqlite3.c32830 #define threadid pthread_self()
32832 #define threadid 0
33317 threadid, fd, zOpName, zType, (int)p->l_start, (int)p->l_len,
/external/sqlite/dist/orig/
Dsqlite3.c32826 #define threadid pthread_self()
32828 #define threadid 0
33307 threadid, fd, zOpName, zType, (int)p->l_start, (int)p->l_len,