Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_dummy_thread.py151 thread_count = 5
152 testing_queue = Queue.Queue(thread_count)
156 "(will take approx. %s to %s sec.) ***" % (DELAY, thread_count)
157 for count in xrange(thread_count):
167 self.assertTrue(testing_queue.qsize() == thread_count,
169 (thread_count, DELAY))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dthread_atheos.h97 static atomic_t thread_count = 0; variable
108 this_thread = atomic_add(&thread_count, 1); in PyThread_start_new_thread()
136 if (atomic_add(&thread_count, 0) == 0) { in PyThread_exit_thread()
Dthread_beos.h113 static int32 thread_count = 0; variable
125 this_thread = atomic_add( &thread_count, 1 ); in PyThread_start_new_thread()
154 threads = atomic_add( &thread_count, 0 ); in PyThread_exit_thread()