Home
last modified time | relevance | path

Searched refs:thread_entry (Results 1 – 23 of 23) sorted by relevance

/AliOS-Things-master/components/py_engine/tests/thread/
A Dthread_exit2.py12 def thread_entry(): function
16 _thread.start_new_thread(thread_entry, ())
17 _thread.start_new_thread(thread_entry, ())
A Dthread_exit1.py12 def thread_entry(): function
16 _thread.start_new_thread(thread_entry, ())
17 _thread.start_new_thread(thread_entry, ())
A Dthread_start1.py16 def thread_entry(n): function
21 _thread.start_new_thread(thread_entry, (10,))
22 _thread.start_new_thread(thread_entry, (20,))
A Dthread_start2.py12 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 Dthread_exc2.py6 def thread_entry(): function
10 _thread.start_new_thread(thread_entry, ())
A Dstress_recurse.py12 def thread_entry(): function
23 _thread.start_new_thread(thread_entry, ())
A Dstress_create.py10 def thread_entry(n): function
17 _thread.start_new_thread(thread_entry, (thread_num,))
A Dthread_lock2.py14 def thread_entry(): function
22 _thread.start_new_thread(thread_entry, ())
A Dthread_exc1.py12 def thread_entry(): function
28 _thread.start_new_thread(thread_entry, ())
A Dthread_exc2.py.exp1 Unhandled exception in thread started by <function thread_entry at 0x\[0-9a-f\]\+>
3 File \.\+, line 7, in thread_entry
A Dthread_lock3.py12 def thread_entry(idx): function
25 _thread.start_new_thread(thread_entry, (i,))
A Dthread_ident1.py8 def thread_entry(): function
19 _thread.start_new_thread(thread_entry, ())
A Dthread_shared1.py12 def thread_entry(n, tup): function
29 _thread.start_new_thread(thread_entry, (100, tup))
A Dthread_shared2.py13 def thread_entry(n, lst, idx): function
30 _thread.start_new_thread(thread_entry, ((i + 1) * 10, lst, i))
A Dthread_sleep1.py21 def thread_entry(t): function
30 _thread.start_new_thread(thread_entry, (10 * i,))
A Dthread_gc1.py9 def thread_entry(n): function
32 _thread.start_new_thread(thread_entry, (10,))
A Dthread_stacksize1.py21 def thread_entry(): function
44 _thread.start_new_thread(thread_entry, ())
A Dstress_heap.py17 def thread_entry(n): function
45 _thread.start_new_thread(thread_entry, (10000,))
A Dthread_lock4.py19 def thread_entry(): function
42 _thread.start_new_thread(thread_entry, ())
A Dstress_aes.py238 def thread_entry(): function
270 _thread.start_new_thread(thread_entry, ())
/AliOS-Things-master/components/posix/src/internal/
A Dpthread.h38 void *(*thread_entry)(void *para); /* The start routine of the thread. */ member
/AliOS-Things-master/components/py_engine/engine/py/
A Dmodthread.c157 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 Dpthread.c124 pthread_exit(ptcb->thread_entry(ptcb->thread_para)); in start_pthread()
172 ptcb->thread_entry = start_routine; in pthread_create()

Completed in 23 milliseconds