华南俳烁实业有限公司

考試首頁 | 考試用書 | 培訓(xùn)課程 | 模擬考場 | 考試論壇  
  當(dāng)前位置:操作系統(tǒng) > Linux > 文章內(nèi)容
  

Linux教程:微型嵌入式實(shí)時操作系統(tǒng)SmallRTOS常用接口函數(shù)

 [ 2016年2月6日 ] 【

簡單示例程序

下面是采用實(shí)時嵌入式操作系統(tǒng)SmallRTOS實(shí)現(xiàn)的多任務(wù)處理演示示例,主要包括任務(wù)創(chuàng)建、信號量創(chuàng)建、任務(wù)延時等功能。代碼如下:
OSTaskHandle_t HWTaskHandle = NULL;
OSTaskHandle_t GBTaskHandle = NULL;
OSSemHandle_t GBSemaphoreHandle = NULL;

void TaskHelloWorld( void *pvParameters );
void TaskGoodBye( void *pvParameters );

int main( void )
{
GBSemaphoreHandle = OSSemCreate();

// configure and start tasks
HWTaskHandle = OSTaskCreate(TaskHelloWorld, NULL, OSMINIMAL_STACK_SIZE, OSLOWEAST_PRIORITY+1, "HW");
GBTaskHandle = OSTaskCreate(TaskGoodBye, NULL, OSMINIMAL_STACK_SIZE, OSLOWEAST_PRIORITY+2, "GB");

/* Start the tasks and timer running. */
OSStart();
for( ;; );
return 0;
}

void TaskHelloWorld( void *pvParameters )
{
/* Remove compiler warning about unused parameter. */
( void ) pvParameters;
for( ;; )
{
OSSemPost(GBSemaphoreHandle);
OSTaskSleep(200*OSTICKS_PER_MS);
}
}

void TaskGoodBye( void *pvParameters )
{
/* Remove compiler warning about unused parameter. */
( void ) pvParameters;
for( ;; )
{
OSSemPend(GBSemaphoreHandle, OSPEND_FOREVER_VALUE);
}
}

首頁 1 2 3 尾頁
本文糾錯】【告訴好友】【打印此文】【返回頂部
將考試網(wǎng)添加到收藏夾 | 每次上網(wǎng)自動訪問考試網(wǎng) | 復(fù)制本頁地址,傳給QQ/MSN上的好友 | 申請鏈接 | 意見留言 TOP
關(guān)于本站  網(wǎng)站聲明  廣告服務(wù)  聯(lián)系方式  站內(nèi)導(dǎo)航  考試論壇
Copyright © 2007-2013 中華考試網(wǎng)(Examw.com) All Rights Reserved
正蓝旗| 太保市| 那曲县| 舒城县| 普格县| 马公市| 静宁县| 巴南区| 宜宾县| 湘西| 澄迈县| 延津县| 太原市| 八宿县| 锡林郭勒盟| 巴彦淖尔市| 从化市| 屏边| 金溪县| 青海省| 辽阳市| 扶绥县| 潢川县| 中卫市| 乐东| 安塞县| 长武县| 阿巴嘎旗| 姜堰市| 屯留县| 宜兰市| 凉山| 南充市| 焦作市| 龙游县| 涿州市| 石阡县| 连山| 大庆市| 韶山市| 广南县|