rt-thread/examples/kernel/thread_delay.c

71 lines
1.3 KiB
C
Raw Normal View History

2013-01-08 21:05:02 +08:00
#include <rtthread.h>
#include "tc_comm.h"
/*
* This is an example for delay thread
*/
static struct rt_thread thread;
static char thread_stack[THREAD_STACK_SIZE];
static void thread_entry(void* parameter)
{
2013-12-21 12:51:52 +08:00
rt_tick_t tick;
rt_kprintf("thread inited ok\n");
2013-01-08 21:05:02 +08:00
2013-12-21 12:51:52 +08:00
rt_kprintf("thread delay 10 tick\n");
tick = rt_tick_get();
rt_thread_delay(10);
if (rt_tick_get() - tick > 11)
2013-12-21 12:51:52 +08:00
{
tc_done(TC_STAT_FAILED);
return;
}
2013-01-08 21:05:02 +08:00
2013-12-21 12:51:52 +08:00
rt_kprintf("thread delay 15 tick\n");
tick = rt_tick_get();
rt_thread_delay(15);
if (rt_tick_get() - tick > 16)
2013-12-21 12:51:52 +08:00
{
tc_done(TC_STAT_FAILED);
return;
}
2013-01-08 21:05:02 +08:00
2013-12-21 12:51:52 +08:00
rt_kprintf("thread exit\n");
2013-01-08 21:05:02 +08:00
2013-12-21 12:51:52 +08:00
tc_done(TC_STAT_PASSED);
2013-01-08 21:05:02 +08:00
}
rt_err_t thread_delay_init()
{
2013-12-21 12:51:52 +08:00
rt_err_t result;
2013-01-08 21:05:02 +08:00
2013-12-21 12:51:52 +08:00
result = rt_thread_init(&thread,
"test",
thread_entry, RT_NULL,
&thread_stack[0], sizeof(thread_stack),
THREAD_PRIORITY, 10);
2013-01-08 21:05:02 +08:00
2013-12-21 12:51:52 +08:00
if (result == RT_EOK)
rt_thread_startup(&thread);
else
tc_stat(TC_STAT_END | TC_STAT_FAILED);
2013-01-08 21:05:02 +08:00
2013-12-21 12:51:52 +08:00
return result;
2013-01-08 21:05:02 +08:00
}
#ifdef RT_USING_TC
int _tc_thread_delay()
{
2013-12-21 12:51:52 +08:00
thread_delay_init();
2013-01-08 21:05:02 +08:00
2013-12-21 12:51:52 +08:00
return 30;
2013-01-08 21:05:02 +08:00
}
FINSH_FUNCTION_EXPORT(_tc_thread_delay, a thread delay test);
#else
int rt_application_init()
{
2013-12-21 12:51:52 +08:00
thread_delay_init();
2013-01-08 21:05:02 +08:00
2013-12-21 12:51:52 +08:00
return 0;
2013-01-08 21:05:02 +08:00
}
#endif