CreateEvent
Posted by Go crazy for anything that will make you smile.
대기상태에 있는 스레드 모두를 실행가능한 상태로 변경해 줄 수 있다. HANDLE CreateEvent( LPSECURITY_ATTRIBUTES lpEventAttributes, BOOL bManualReset, BOOL bInitialState, LPTSTR lpName ); lpEventAttributes : NULL 넣어주면 된다. bManualReset : manual-reset 모드 event로 생성할 것인지 auto-reset 모드 event로 생성할 것인지 지정. 만약 TRUE를 전달하면 manual-reset모드의 event가 발생하는데 event가 signaled 상태에 있을 경우 resetevent함수를 호출하지 않는 이상 non-signaled상태로 돌아가지 않는다. 반면에 FALSE..