is there any easier solution in porting a windows manual-reset event to pthread, than a pthread conditional-variable + pthread mutex + a flag if event is set or unset?
|
1
|
|||
|
|
|
Pthreads are low level constructs. No, there isn't a simpler mechanism; Building your own wouldn't be too hard, though.
This may not fit your usage, as you will often have a different lock that you'd want to use in place of |
||
|
|
|
|
I think Windows Events are more akin to a semaphore. I.e. for auto-reset, you'd use a binary semaphore and the sem_timedwait() function. |
||
|
|
