Sorting source tree a bit
[tpg/acess2.git] / Notes / 20120122-Events.txt
1 Per-thread event system
2
3 enum eEvents
4 {
5         EVENT_VFS,
6         EVENT_IPCMESSAGE,
7         ...
8 };
9
10 Uint32  tThread.ActiveEvents
11 tSemaphore      tThread.EventSemaphore
12
13
14 Threads_PostEvent(tThread *, int EventID);
15 Threads_WaitEvents(Uint32 Mask);
16 - Clears events watched when wait is over

UCC git Repository :: git.ucc.asn.au