WaitForMultipleObjects

WaitForMultipleObjects

本文介绍了在WINCE中对Linux的wait_event_interruptible_timeout函数有何比较?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 大家好, 我正在将一个Linux驱动程序移植到WinCE。 Linux驱动程序使用一个函数:  wait_event_interruptible_timeout 在WinCE中我可以使用哪个函数而不是  wait_event_interruptible_timeout 功能? 任何人都可以帮我解决这个问题.. 谢谢。 关于, Keshava GN Keshava GN(keshavagn@iwavesystems.com),会员 - 技术,iWave Systems(http://iwavesystems.com)解决方案 嗨Keshava, 您可以使用 WaitForMultipleObjects 函数用于相同目的。 语法为as如下:, DWORD WaitForMultipleObjects( DWORD nCount, CONST HANDLE * lpHandles, BOOL fWaitAll, DWORD dwMilliseconds ); 有关详细信息,请参阅以下链接, http:// msdn.microsoft.com/en-us/library/aa915354.aspx 问候, Kavya DC Hi all,I'm porting a linux driver to WinCE.Linux driver uses a function: wait_event_interruptible_timeoutIn WinCE which function i can use instead of wait_event_interruptible_timeout function?Anybody please help me regarding this..Thanks.With regards,Keshava G NKeshava G N ( keshavagn@iwavesystems.com ), Member - Technical, iWave Systems ( http://iwavesystems.com ) 解决方案 Hi Keshava,You can use WaitForMultipleObjects function for the same purpose.Syntax is as follows,DWORD WaitForMultipleObjects( DWORD nCount, CONST HANDLE* lpHandles, BOOL fWaitAll, DWORD dwMilliseconds);For more details please refer following link,http://msdn.microsoft.com/en-us/library/aa915354.aspxWith Regards,Kavya D.C 这篇关于在WINCE中对Linux的wait_event_interruptible_timeout函数有何比较?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
09-01 21:51