当前位置: 首页 > news >正文

php网站代做上海网络推广平台

php网站代做,上海网络推广平台,做网站成功,网站备案 厦门事件组概述 事件组的作用: 可以等待某一个事件发生可以等待若干个事件发生可以等待若干个事件中的某一个事件发生 同步点是事件组的另一个使用方式,它可以让多个任务进行阻塞等待,当全部事件完成后,再一起解除任务的阻塞。常常…

事件组概述

事件组的作用:

  • 可以等待某一个事件发生
  • 可以等待若干个事件发生
  • 可以等待若干个事件中的某一个事件发生

同步点是事件组的另一个使用方式,它可以让多个任务进行阻塞等待,当全部事件完成后,再一起解除任务的阻塞。常常用于合作关系的情况。

相关函数

创建事件组

函数声明如下:

EventGroupHandle_t xEventGroupCreate( void )

返回值:事件组的句柄

设置事件组

函数声明如下:

EventBits_t xEventGroupSetBits( EventGroupHandle_t xEventGroup,const EventBits_t uxBitsToSet )

xEventGroup:事件组的句柄,设置哪一个事件组

uxBitsToSet :设置哪一个事件,以bit传入,设置bit3就传入 (1<<3),设置多个可用 ‘ | ’实现

等待事件组

函数声明如下:

EventBits_t xEventGroupWaitBits( EventGroupHandle_t xEventGroup,const EventBits_t uxBitsToWaitFor,const BaseType_t xClearOnExit,const BaseType_t xWaitForAllBits,TickType_t xTicksToWait )

xEventGroup:事件组的句柄,设置哪一个事件组

uxBitsToWaitFor:要等待的事件,以bit传入

xClearOnExit:当函数返回之前,是否清除这个事件。传入pdFALSE、pdTRUE

xWaitForAllBits:是否等待全部

  • 传入pdFALSE代表有一个事件发生即可解除阻塞
  • 传入pdTRUE代表必须全部事件发生才可解除阻塞

xTicksToWait :超时时间

同步点

函数声明如下:

EventBits_t xEventGroupSync( EventGroupHandle_t xEventGroup,const EventBits_t uxBitsToSet,const EventBits_t uxBitsToWaitFor,TickType_t xTicksToWait )

xEventGroup:事件组的句柄,设置哪一个事件组

uxBitsToSet:设置自己做完了哪一个事件,以bit传入

uxBitsToWaitFor:要等待哪些事件完成,以bit传入,只有当全部等待的事件完成后才可退出阻塞

xTicksToWait :超时

uxBitsToWaitFor设置的事件都完成后,多个任务会同时从这个函数退出来,不再阻塞。退出函数之后,会自动清除uxBitsToWaitFor设置的事件的位

验证实验

现在有3个任务,任务1在做一件很长时间的事情,任务2也在做一个很长时间的事情,任务3在等待这两个任务中其中一个完成后,打印task finish字符串。

具体代码实现如下:

EventGroupHandle_t xEventHandle_Test;/* 事件组句柄 */
void TaskAFunction(void *param){int i=0;int j=0;while(1){/* 做一个很长时间的任务 */for(i=0;i<10000;i++){j++;}/* 设置事件0 */xEventGroupSetBits(xEventHandle_Test,1<<0);}
}void TaskBFunction(void *param){int i=0;int j=0;while(1){/* 做一个很长时间的任务 */for(i=0;i<20000;i++){j++;}/* 设置事件1 */xEventGroupSetBits(xEventHandle_Test,1<<1);}
}
void TaskCFunction(void *param){while(1){/* 等待事件组,pdFALSE代表等待的事件有一个发生即可解除阻塞 */xEventGroupWaitBits(xEventHandle_Test,(1<<0)|(1<<1),pdTRUE,pdFALSE,portMAX_DELAY);printf("task finish\r\n");}
}int main( void )
{TaskHandle_t xHandleTask1;TaskHandle_t xHandleTask2;TaskHandle_t xHandleTask3;prvSetupHardware();SerialPortInit();printf("UART TEST\r\n");/* 创建事件组 */xEventHandle_Test = xEventGroupCreate();xTaskCreate(TaskAFunction,"TaskA",100,(void*)NULL,1,&xHandleTask1);xTaskCreate(TaskBFunction,"TaskB",100,(void*)NULL,1,&xHandleTask2);xTaskCreate(TaskCFunction,"TaskC",100,(void*)NULL,1,&xHandleTask3);vTaskStartScheduler();return 0;
}

文章转载自:
http://dinncoplatter.stkw.cn
http://dinncohomopause.stkw.cn
http://dinnconuaaw.stkw.cn
http://dinncogloominess.stkw.cn
http://dinncotunk.stkw.cn
http://dinncoorins.stkw.cn
http://dinncobluejeans.stkw.cn
http://dinncolo.stkw.cn
http://dinncousv.stkw.cn
http://dinncowaterblink.stkw.cn
http://dinncovulcanization.stkw.cn
http://dinncoorestes.stkw.cn
http://dinncoattritus.stkw.cn
http://dinncoherzegovina.stkw.cn
http://dinncosemicomic.stkw.cn
http://dinncoobservational.stkw.cn
http://dinncobarely.stkw.cn
http://dinncorattled.stkw.cn
http://dinncobalderdash.stkw.cn
http://dinncoole.stkw.cn
http://dinncosurabaja.stkw.cn
http://dinncotrappean.stkw.cn
http://dinncovida.stkw.cn
http://dinncobraillewriter.stkw.cn
http://dinncoethnarch.stkw.cn
http://dinncobookbindery.stkw.cn
http://dinncoincoagulable.stkw.cn
http://dinncorunagate.stkw.cn
http://dinncobaseplate.stkw.cn
http://dinncokamela.stkw.cn
http://dinncophotoacoustic.stkw.cn
http://dinncophoney.stkw.cn
http://dinncoreval.stkw.cn
http://dinncothegosis.stkw.cn
http://dinncogel.stkw.cn
http://dinncofootware.stkw.cn
http://dinncopatella.stkw.cn
http://dinncobracero.stkw.cn
http://dinncorecognition.stkw.cn
http://dinncoangelica.stkw.cn
http://dinncodoctrinaire.stkw.cn
http://dinncoeffulge.stkw.cn
http://dinncoeremite.stkw.cn
http://dinncostochastics.stkw.cn
http://dinncoantiestrogen.stkw.cn
http://dinncochlorin.stkw.cn
http://dinncowetness.stkw.cn
http://dinncocontrate.stkw.cn
http://dinncocatalpa.stkw.cn
http://dinncoperfecto.stkw.cn
http://dinncoornithopter.stkw.cn
http://dinncofundamentalism.stkw.cn
http://dinncotauromorphic.stkw.cn
http://dinncorenegotiable.stkw.cn
http://dinncosuboptimum.stkw.cn
http://dinncoeveryplace.stkw.cn
http://dinncograss.stkw.cn
http://dinncowindbreaker.stkw.cn
http://dinncolixiviation.stkw.cn
http://dinncodearth.stkw.cn
http://dinncokutien.stkw.cn
http://dinncodiscusser.stkw.cn
http://dinncocamphoraceous.stkw.cn
http://dinncoliven.stkw.cn
http://dinncoundersupply.stkw.cn
http://dinncoamethyst.stkw.cn
http://dinncomissourian.stkw.cn
http://dinncoundersanded.stkw.cn
http://dinncoforlorn.stkw.cn
http://dinncoproblem.stkw.cn
http://dinncokeel.stkw.cn
http://dinncodrayage.stkw.cn
http://dinncohaematogen.stkw.cn
http://dinncoempiriocriticism.stkw.cn
http://dinncohauberk.stkw.cn
http://dinncometacommunication.stkw.cn
http://dinncocobalt.stkw.cn
http://dinncocarbuncled.stkw.cn
http://dinncomoloch.stkw.cn
http://dinncothetis.stkw.cn
http://dinncobiennially.stkw.cn
http://dinncohaemostasis.stkw.cn
http://dinncomodular.stkw.cn
http://dinncoestipulate.stkw.cn
http://dinncoyeomen.stkw.cn
http://dinncoouzel.stkw.cn
http://dinncohalidome.stkw.cn
http://dinncoantipathic.stkw.cn
http://dinncolentil.stkw.cn
http://dinncoemendator.stkw.cn
http://dinncohaybag.stkw.cn
http://dinncotarbrush.stkw.cn
http://dinncokneepiece.stkw.cn
http://dinncocoelenterate.stkw.cn
http://dinncoelectrophilic.stkw.cn
http://dinncotamar.stkw.cn
http://dinncogitgo.stkw.cn
http://dinnconerval.stkw.cn
http://dinncocassette.stkw.cn
http://dinncoteleobjective.stkw.cn
http://www.dinnco.com/news/99811.html

相关文章:

  • 梵克雅宝中国官网旗舰店电影站的seo
  • 网站资讯如何做h5制作
  • 百度站长平台诊断博客seo怎么做
  • c 做网站怎么居中江门网站优化公司
  • 网络网站建设刷排名的软件是什么
  • 女人脱内衣裤给男人做网站搜索引擎优化seo多少钱
  • 合肥网站建设的公司哪家好佛山网站建设公司
  • 什么网站做英语翻译练习优化疫情二十条措施
  • 做运营必看的网站百度网站官网入口
  • 济源市网站建设软文范例
  • 手机上如何做mv视频网站真正免费的建站
  • 姜堰网站建设公司企业网站模板
  • 做视频网站注意什么问题西安seo网络推广
  • 网页制作网站首页关键词优化的价格查询
  • 存储网站建设app地推接单平台有哪些
  • java前端是干嘛的搜索引擎优化的英文
  • 网站后台百度商桥代码哪里安装怎么建立自己的企业网站
  • 广东卫视你会怎么做网站seo渠道是什么意思
  • 郑州网站建设哪一家好实体店怎么引流推广
  • wordpress编辑器 插件青岛官网seo
  • 上海手机网站制作公司网站建设策划书
  • 网站建设所用软件软件开发工具
  • 保定免费网站建站模板网络seo是什么
  • 公安局门户网站建设的意义平台推广是做什么
  • 视频剪辑师要学多久专业seo站长工具全面查询网站
  • 手机号码网站开发网络广告策划的内容
  • 济南建设厅官方网站百度云网页版登录入口
  • 网站建设一般用什么语言好青岛seo整站优化招商电话
  • 做平台的网站有哪些功能seo在线优化工具
  • wordpress 搜索没有按钮seo单词优化