Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dthread_sgi.h22 static struct pidlist { struct
25 } pidlist[MAXPROC]; /* PIDs of other threads; protected by count_lock */ argument
87 if (pidlist[i].parent == mypid && (pid = pidlist[i].child) > 0) { in clean_threads()
91 pidlist[i] = pidlist[--maxpidindex]; in clean_threads()
94 if (pidlist[j].parent == pid) in clean_threads()
95 pidlist[j].child = -1; in clean_threads()
104 if (pidlist[i].child == -1) { in clean_threads()
105 pidlist[i] = pidlist[--maxpidindex]; in clean_threads()
159 pidlist[maxpidindex].parent = getpid(); in PyThread_start_new_thread()
160 pidlist[maxpidindex++].child = success; in PyThread_start_new_thread()