|
FreeBASIC
0.91.0
|
Data Fields | |
| pthread_cond_t | id |
| int | waiters_count |
| CRITICAL_SECTION | waiters_count_lock |
| union { | |
| struct { | |
| HANDLE event [2] | |
| } w9x | |
| struct { | |
| HANDLE sema | |
| HANDLE waiters_done | |
| BOOL was_broadcast | |
| } nt | |
| }; | |
Definition at line 6 of file thread_cond.c.
| union { ... } |
| HANDLE _FBCOND::event[2] |
Definition at line 21 of file thread_cond.c.
| pthread_cond_t _FBCOND::id |
Definition at line 7 of file thread_cond.c.
| struct { ... } _FBCOND::nt |
| HANDLE _FBCOND::sema |
Definition at line 24 of file thread_cond.c.
| struct { ... } _FBCOND::w9x |
| int _FBCOND::waiters_count |
Definition at line 17 of file thread_cond.c.
| CRITICAL_SECTION _FBCOND::waiters_count_lock |
Definition at line 18 of file thread_cond.c.
| HANDLE _FBCOND::waiters_done |
Definition at line 25 of file thread_cond.c.
| BOOL _FBCOND::was_broadcast |
Definition at line 26 of file thread_cond.c.