From 91ecf31a089d5074ad3353cd86d45e41d5a49cf6 Mon Sep 17 00:00:00 2001 From: qiuyiuestc Date: Tue, 20 Apr 2010 01:10:10 +0000 Subject: [PATCH] move thread directory git-svn-id: https://rt-thread.googlecode.com/svn/trunk@656 bbd45198-f89e-11dd-88c7-29a3b14d5316 --- components/thread/SConscript | 10 --------- components/thread/module_thread_dynamic.c | 25 ----------------------- 2 files changed, 35 deletions(-) delete mode 100644 components/thread/SConscript delete mode 100644 components/thread/module_thread_dynamic.c diff --git a/components/thread/SConscript b/components/thread/SConscript deleted file mode 100644 index 8ce2fcead5..0000000000 --- a/components/thread/SConscript +++ /dev/null @@ -1,10 +0,0 @@ -Import('env') - -target = 'thread.mo' - -module_env = env.Clone(CPPDEFINE = 'RT_MODULE') -module_env.Replace(LINKFLAGS = ' -r -d -e rtm_main -nostdlib') - -src_local = Glob('*.c') - -module_env.Program(target, src_local) diff --git a/components/thread/module_thread_dynamic.c b/components/thread/module_thread_dynamic.c deleted file mode 100644 index d4ac0f6716..0000000000 --- a/components/thread/module_thread_dynamic.c +++ /dev/null @@ -1,25 +0,0 @@ -#include - -#define THREAD_PRIORITY 25 -#define THREAD_STACK_SIZE 512 -#define THREAD_TIMESLICE 5 - -static void thread_entry(void* parameter) -{ - rt_kprintf("thread dynamicly created ok\n"); - rt_thread_delay(10); - rt_kprintf("thread exit\n"); -} - -int rtm_main() -{ - rt_thread_t tid; - - tid = rt_thread_create("test", - thread_entry, RT_NULL, - THREAD_STACK_SIZE, THREAD_PRIORITY, THREAD_TIMESLICE); - if (tid != RT_NULL) - rt_thread_startup(tid); - - return 0; -} \ No newline at end of file