Lines Matching defs:threading
1763 // Wrap up existing "threading"-module-created, non-daemon threads.
2082 // Wrap up existing "threading"-module-created, non-daemon threads.
2886 /* Wait until threading._shutdown completes, provided
2887 the threading module was imported in the first place.
2889 "threading" threads have completed. */
2894 PyObject *threading = PyImport_GetModule(&_Py_ID(threading));
2895 if (threading == NULL) {
2899 /* else: threading not imported */
2902 result = PyObject_CallMethodNoArgs(threading, &_Py_ID(_shutdown));
2904 PyErr_WriteUnraisable(threading);
2909 Py_DECREF(threading);