MyEvent.SetEvent; // 同步信号置位
Posted bwdblogs
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MyEvent.SetEvent; // 同步信号置位相关的知识,希望对你有一定的参考价值。
MyEvent.SetEvent; // 同步信号置位
TSimpleEvent.Create = TEvent.Create(nil, True, False, nil)
= CreateEvent(nil, True, False, nil);
其中第三个参数表示同步信号初始化时状态
True表示置位Signaled,即SetEvent
False表示复位nonSignaled,即ResetEvent
WaitFor(Timeout) = (wrSignaled,
wrTimeout, wrAbandoned, wrError);
分别表示条件:
1、超时或信号置位 2、只是超时
3、超时前信号Destroy 4、超时前发生错误
以上是关于MyEvent.SetEvent; // 同步信号置位的主要内容,如果未能解决你的问题,请参考以下文章