Home
last modified time | relevance | path

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

/external/python/cpython3/Python/
Dthread.c171 PyObject *threadinfo, *value; in PyThread_GetInfo() local
184 threadinfo = PyStructSequence_New(&ThreadInfoType); in PyThread_GetInfo()
185 if (threadinfo == NULL) in PyThread_GetInfo()
190 Py_DECREF(threadinfo); in PyThread_GetInfo()
193 PyStructSequence_SET_ITEM(threadinfo, pos++, value); in PyThread_GetInfo()
202 Py_DECREF(threadinfo); in PyThread_GetInfo()
209 PyStructSequence_SET_ITEM(threadinfo, pos++, value); in PyThread_GetInfo()
226 PyStructSequence_SET_ITEM(threadinfo, pos++, value); in PyThread_GetInfo()
227 return threadinfo; in PyThread_GetInfo()