Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dthreadmodule.c16 static PyObject *ThreadError; variable
75 PyErr_SetString(ThreadError, "release unlocked lock"); in lock_PyThread_release_lock()
171 PyErr_SetString(ThreadError, "can't allocate lock"); in newlockobject()
687 PyErr_SetString(ThreadError, "can't start new thread"); in thread_PyThread_start_new_thread()
758 PyErr_SetString(ThreadError, "no current thread ident"); in thread_get_ident()
819 PyErr_SetString(ThreadError, in thread_stack_size()
911 ThreadError = PyErr_NewException("thread.error", NULL, NULL); in initthread()
912 PyDict_SetItemString(d, "error", ThreadError); in initthread()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_multiprocessing.py568 self.assertRaises((ValueError, threading.ThreadError), lock.release)