/AliOS-Things-master/components/py_engine/tests/thread/ |
A D | thread_exit2.py | 12 def thread_entry(): function 16 _thread.start_new_thread(thread_entry, ()) 17 _thread.start_new_thread(thread_entry, ())
|
A D | thread_exit1.py | 12 def thread_entry(): function 16 _thread.start_new_thread(thread_entry, ()) 17 _thread.start_new_thread(thread_entry, ())
|
A D | thread_start1.py | 16 def thread_entry(n): function 21 _thread.start_new_thread(thread_entry, (10,)) 22 _thread.start_new_thread(thread_entry, (20,))
|
A D | thread_start2.py | 12 def thread_entry(a0, a1, a2, a3): function 17 _thread.start_new_thread(thread_entry, (10, 20), {"a2": 0, "a3": 1}) 24 _thread.start_new_thread(thread_entry, (), ())
|
A D | thread_exc2.py | 6 def thread_entry(): function 10 _thread.start_new_thread(thread_entry, ())
|
A D | stress_recurse.py | 12 def thread_entry(): function 23 _thread.start_new_thread(thread_entry, ())
|
A D | stress_create.py | 10 def thread_entry(n): function 17 _thread.start_new_thread(thread_entry, (thread_num,))
|
A D | thread_lock2.py | 14 def thread_entry(): function 22 _thread.start_new_thread(thread_entry, ())
|
A D | thread_exc1.py | 12 def thread_entry(): function 28 _thread.start_new_thread(thread_entry, ())
|
A D | thread_exc2.py.exp | 1 Unhandled exception in thread started by <function thread_entry at 0x\[0-9a-f\]\+> 3 File \.\+, line 7, in thread_entry
|
A D | thread_lock3.py | 12 def thread_entry(idx): function 25 _thread.start_new_thread(thread_entry, (i,))
|
A D | thread_ident1.py | 8 def thread_entry(): function 19 _thread.start_new_thread(thread_entry, ())
|
A D | thread_shared1.py | 12 def thread_entry(n, tup): function 29 _thread.start_new_thread(thread_entry, (100, tup))
|
A D | thread_shared2.py | 13 def thread_entry(n, lst, idx): function 30 _thread.start_new_thread(thread_entry, ((i + 1) * 10, lst, i))
|
A D | thread_sleep1.py | 21 def thread_entry(t): function 30 _thread.start_new_thread(thread_entry, (10 * i,))
|
A D | thread_gc1.py | 9 def thread_entry(n): function 32 _thread.start_new_thread(thread_entry, (10,))
|
A D | thread_stacksize1.py | 21 def thread_entry(): function 44 _thread.start_new_thread(thread_entry, ())
|
A D | stress_heap.py | 17 def thread_entry(n): function 45 _thread.start_new_thread(thread_entry, (10000,))
|
A D | thread_lock4.py | 19 def thread_entry(): function 42 _thread.start_new_thread(thread_entry, ())
|
A D | stress_aes.py | 238 def thread_entry(): function 270 _thread.start_new_thread(thread_entry, ())
|
/AliOS-Things-master/components/posix/src/internal/ |
A D | pthread.h | 38 void *(*thread_entry)(void *para); /* The start routine of the thread. */ member
|
/AliOS-Things-master/components/py_engine/engine/py/ |
A D | modthread.c | 157 STATIC void *thread_entry(void *args_in) { in thread_entry() function 272 mp_thread_create(thread_entry, th_args, &th_args->stack_size); in mod_thread_start_new_thread()
|
/AliOS-Things-master/components/posix/src/ |
A D | pthread.c | 124 pthread_exit(ptcb->thread_entry(ptcb->thread_para)); in start_pthread() 172 ptcb->thread_entry = start_routine; in pthread_create()
|