Home
last modified time | relevance | path

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

/third_party/python/Python/
Dthread.c188 PyObject *threadinfo, *value; in PyThread_GetInfo() local
201 threadinfo = PyStructSequence_New(&ThreadInfoType); in PyThread_GetInfo()
202 if (threadinfo == NULL) in PyThread_GetInfo()
207 Py_DECREF(threadinfo); in PyThread_GetInfo()
210 PyStructSequence_SET_ITEM(threadinfo, pos++, value); in PyThread_GetInfo()
219 Py_DECREF(threadinfo); in PyThread_GetInfo()
226 PyStructSequence_SET_ITEM(threadinfo, pos++, value); in PyThread_GetInfo()
243 PyStructSequence_SET_ITEM(threadinfo, pos++, value); in PyThread_GetInfo()
244 return threadinfo; in PyThread_GetInfo()