Home
last modified time | relevance | path

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

/third_party/python/Include/
Dpythread.h19 PyAPI_FUNC(unsigned long) PyThread_start_new_thread(void (*)(void *), void *);
/third_party/python/Python/
Dthread_nt.h185 PyThread_start_new_thread(void (*func)(void *), void *arg) in PyThread_start_new_thread() function
Dthread_pthread.h246 PyThread_start_new_thread(void (*func)(void *), void *arg) in PyThread_start_new_thread() function
/third_party/python/Modules/
Dfaulthandler.c789 if (PyThread_start_new_thread(faulthandler_thread, NULL) == PYTHREAD_INVALID_THREAD_ID) { in faulthandler_dump_traceback_later()
1109 thread = PyThread_start_new_thread(faulthandler_fatal_error_thread, lock); in faulthandler_fatal_error_c_thread()
D_threadmodule.c1162 unsigned long ident = PyThread_start_new_thread(thread_run, (void*) boot); in thread_PyThread_start_new_thread()
D_testcapimodule.c3074 PyThread_start_new_thread(_make_call_from_thread, fn); in test_thread_state()
3088 PyThread_start_new_thread(_make_call_from_thread, fn); in test_thread_state()
4571 thread = PyThread_start_new_thread(temporary_c_thread, &test_c_thread); in call_in_temporary_c_thread()
/third_party/python/PC/
Dpython3dll.c574 EXPORT_FUNC(PyThread_start_new_thread)
/third_party/python/Doc/data/
Dstable_abi.dat635 function,PyThread_start_new_thread,3.2,,
/third_party/python/Programs/
D_testembed.c380 unsigned long thrd = PyThread_start_new_thread(bpo20891_thread, &lock); in test_bpo20891()
/third_party/python/Misc/
Dstable_abi.toml1821 [function.PyThread_start_new_thread]
DHISTORY21289 - The Windows implementation of PyThread_start_new_thread() never
23994 - PyThread_start_new_thread() now returns a long int giving the thread
DNEWS20929 :c:func:`PyThread_start_new_thread`: add a function wrapper to always
25974 - bpo-6532: The type of results of PyThread_start_new_thread() and
/third_party/python/Doc/whatsnew/
D3.7.rst1709 The type of results of :c:func:`PyThread_start_new_thread` and