【Demo 0091】线程同步对象—事件

事件是我们目常编程中用于实现线程同步通讯最多的对象.  事件也是内核对象具有跨进程通讯的能力。 可用于设计更复杂的同步对象。 系统提供相关API有:

CreateEvent

OpenEvent

SetEvent

ResetEvent

PulsEvent

WaitForSingleObject

CloseHandle

原文地址:https://www.cnblogs.com/ztercel/p/2539829.html