2010-03-21 11:02:15 +08:00
|
|
|
|
/*
|
|
|
|
|
* 程序清单:静态信号量
|
|
|
|
|
*
|
|
|
|
|
* 这个例子中将创建一个静态信号量(初始值为0 )及一个静态线程,在这个静态线程中
|
|
|
|
|
* 将试图采用超时方式去持有信号量,应该超时返回。然后这个线程释放一次信号量,并
|
|
|
|
|
* 在后面继续采用永久等待方式去持有信号量, 成功获得信号量后返回。
|
|
|
|
|
*/
|
2010-03-17 17:57:07 +08:00
|
|
|
|
#include <rtthread.h>
|
|
|
|
|
#include "tc_comm.h"
|
|
|
|
|
|
2010-03-21 11:02:15 +08:00
|
|
|
|
/* 线程控制块及栈 */
|
|
|
|
|
static struct rt_thread thread;
|
|
|
|
|
static rt_uint8_t thread_stack[THREAD_STACK_SIZE];
|
|
|
|
|
/* 信号量控制块 */
|
2010-03-17 17:57:07 +08:00
|
|
|
|
static struct rt_semaphore sem;
|
2010-03-21 11:02:15 +08:00
|
|
|
|
|
|
|
|
|
/* 线程入口 */
|
2010-03-17 17:57:07 +08:00
|
|
|
|
static void thread_entry(void* parameter)
|
|
|
|
|
{
|
|
|
|
|
rt_err_t result;
|
|
|
|
|
rt_tick_t tick;
|
|
|
|
|
|
2010-03-21 11:02:15 +08:00
|
|
|
|
/* 获得当前的OS Tick */
|
2010-03-17 17:57:07 +08:00
|
|
|
|
tick = rt_tick_get();
|
|
|
|
|
|
2010-03-21 11:02:15 +08:00
|
|
|
|
/* 试图持有信号量,最大等待10个OS Tick后返回 */
|
2010-03-17 17:57:07 +08:00
|
|
|
|
result = rt_sem_take(&sem, 10);
|
|
|
|
|
if (result == -RT_ETIMEOUT)
|
|
|
|
|
{
|
2010-03-21 11:02:15 +08:00
|
|
|
|
/* 超时后判断是否刚好是10个OS Tick */
|
2010-03-17 17:57:07 +08:00
|
|
|
|
if (rt_tick_get() - tick != 10)
|
|
|
|
|
{
|
|
|
|
|
tc_done(TC_STAT_FAILED);
|
|
|
|
|
rt_sem_detach(&sem);
|
|
|
|
|
return;
|
|
|
|
|
}
|
2010-03-21 11:02:15 +08:00
|
|
|
|
rt_kprintf("take semaphore timeout\n");
|
2010-03-17 17:57:07 +08:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2010-03-21 11:02:15 +08:00
|
|
|
|
/* 因为没有其他地方是否信号量,所以不应该成功持有信号量,否则测试失败 */
|
2010-03-17 17:57:07 +08:00
|
|
|
|
tc_done(TC_STAT_FAILED);
|
|
|
|
|
rt_sem_detach(&sem);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-21 11:02:15 +08:00
|
|
|
|
/* 释放一次信号量 */
|
2010-03-17 17:57:07 +08:00
|
|
|
|
rt_sem_release(&sem);
|
|
|
|
|
|
2010-03-21 11:02:15 +08:00
|
|
|
|
/* 永久等待方式持有信号量 */
|
2010-03-17 17:57:07 +08:00
|
|
|
|
result = rt_sem_take(&sem, RT_WAITING_FOREVER);
|
|
|
|
|
if (result != RT_EOK)
|
|
|
|
|
{
|
2010-03-21 11:02:15 +08:00
|
|
|
|
/* 不成功则测试失败 */
|
2010-03-17 17:57:07 +08:00
|
|
|
|
tc_done(TC_STAT_FAILED);
|
|
|
|
|
rt_sem_detach(&sem);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-21 11:02:15 +08:00
|
|
|
|
/* 测试通过 */
|
2010-03-17 17:57:07 +08:00
|
|
|
|
tc_done(TC_STAT_PASSED);
|
2010-03-21 11:02:15 +08:00
|
|
|
|
/* 脱离信号量对象 */
|
2010-03-17 17:57:07 +08:00
|
|
|
|
rt_sem_detach(&sem);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int semaphore_static_init()
|
|
|
|
|
{
|
|
|
|
|
rt_err_t result;
|
|
|
|
|
|
2010-03-21 11:02:15 +08:00
|
|
|
|
/* 初始化信号量,初始值是0 */
|
2010-03-17 17:57:07 +08:00
|
|
|
|
result = rt_sem_init(&sem, "sem", 0, RT_IPC_FLAG_FIFO);
|
|
|
|
|
if (result != RT_EOK)
|
|
|
|
|
{
|
|
|
|
|
tc_stat(TC_STAT_END | TC_STAT_FAILED);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-21 11:02:15 +08:00
|
|
|
|
/* 初始化线程1 */
|
|
|
|
|
result = rt_thread_init(&thread, "thread", /* 线程名:thread */
|
|
|
|
|
thread_entry, RT_NULL, /* 线程的入口是thread_entry,入口参数是RT_NULL*/
|
|
|
|
|
&thread_stack[0], sizeof(thread_stack), /* 线程栈是thread_stack */
|
|
|
|
|
THREAD_PRIORITY, 10);
|
|
|
|
|
if (result == RT_EOK) /* 如果返回正确,启动线程1 */
|
2010-03-17 17:57:07 +08:00
|
|
|
|
rt_thread_startup(&thread);
|
|
|
|
|
else
|
|
|
|
|
tc_stat(TC_STAT_END | TC_STAT_FAILED);
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#ifdef RT_USING_TC
|
|
|
|
|
static void _tc_cleanup()
|
|
|
|
|
{
|
2010-03-21 11:02:15 +08:00
|
|
|
|
/* 调度器上锁,上锁后,将不再切换到其他线程,仅响应中断 */
|
2010-03-17 17:57:07 +08:00
|
|
|
|
rt_enter_critical();
|
|
|
|
|
|
2010-03-21 11:02:15 +08:00
|
|
|
|
/* 执行线程脱离 */
|
2010-03-17 17:57:07 +08:00
|
|
|
|
if (thread.stat != RT_THREAD_CLOSE)
|
2010-03-21 11:02:15 +08:00
|
|
|
|
{
|
2010-03-17 17:57:07 +08:00
|
|
|
|
rt_thread_detach(&thread);
|
|
|
|
|
|
2010-03-21 11:02:15 +08:00
|
|
|
|
/* 执行信号量对象脱离 */
|
|
|
|
|
rt_sem_detach(&sem);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* 调度器解锁 */
|
2010-03-17 17:57:07 +08:00
|
|
|
|
rt_exit_critical();
|
2010-03-21 11:02:15 +08:00
|
|
|
|
|
|
|
|
|
/* 设置TestCase状态 */
|
|
|
|
|
tc_done(TC_STAT_PASSED);
|
2010-03-17 17:57:07 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int _tc_semaphore_static()
|
|
|
|
|
{
|
2010-03-21 11:02:15 +08:00
|
|
|
|
/* 设置TestCase清理回调函数 */
|
2010-03-17 17:57:07 +08:00
|
|
|
|
tc_cleanup(_tc_cleanup);
|
|
|
|
|
semaphore_static_init();
|
|
|
|
|
|
2010-03-21 11:02:15 +08:00
|
|
|
|
/* 返回TestCase运行的最长时间 */
|
|
|
|
|
return 100;
|
2010-03-17 17:57:07 +08:00
|
|
|
|
}
|
2010-03-21 11:02:15 +08:00
|
|
|
|
/* 输出函数命令到finsh shell中 */
|
|
|
|
|
FINSH_FUNCTION_EXPORT(_tc_semaphore_static, a static semaphore example);
|
2010-03-17 17:57:07 +08:00
|
|
|
|
#else
|
2010-03-21 11:02:15 +08:00
|
|
|
|
/* 用户应用入口 */
|
2010-03-17 17:57:07 +08:00
|
|
|
|
int rt_application_init()
|
|
|
|
|
{
|
2010-03-21 11:02:15 +08:00
|
|
|
|
thread_static_init();
|
2010-03-17 17:57:07 +08:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
#endif
|