Home
last modified time | relevance | path

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

/external/python/cpython3/Python/
Dthread.c173 PyObject *threadinfo, *value; in PyThread_GetInfo() local
186 threadinfo = PyStructSequence_New(&ThreadInfoType); in PyThread_GetInfo()
187 if (threadinfo == NULL) in PyThread_GetInfo()
192 Py_DECREF(threadinfo); in PyThread_GetInfo()
195 PyStructSequence_SET_ITEM(threadinfo, pos++, value); in PyThread_GetInfo()
204 Py_DECREF(threadinfo); in PyThread_GetInfo()
211 PyStructSequence_SET_ITEM(threadinfo, pos++, value); in PyThread_GetInfo()
228 PyStructSequence_SET_ITEM(threadinfo, pos++, value); in PyThread_GetInfo()
229 return threadinfo; in PyThread_GetInfo()