4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-29 16:20:25 +08:00
bernard.xiong 911d179125 add more thread example and Chinese comments.
git-svn-id: https://rt-thread.googlecode.com/svn/trunk@519 bbd45198-f89e-11dd-88c7-29a3b14d5316
2010-03-20 15:15:54 +00:00

29 lines
541 B
Python

Import('env')
src_local = Split("""
tc_comm.c
thread_static.c
thread_dynamic.c
thread_priority.c
thread_same_priority.c
thread_static_simple.c
thread_dynamic_simple.c
thread_delete.c
thread_detach.c
thread_yield.c
thread_suspend.c
thread_resume.c
semaphore_static.c
semaphore_dynamic.c
semaphore_priority.c
semaphore_buffer_worker.c
heap_malloc.c
heap_realloc.c
""")
# The set of source files associated with this SConscript file.
obj = env.Object(src_local)
env.Append(CPPDEFINES='RT_USING_TC')
Return('obj')