in pthread library it is possible to find non blocking function:
int pthread_mutex_trylock(pthread_mutex_t *mutex);
can I find something similar in Windows? thanks in advance
|
in pthread library it is possible to find non blocking function:
can I find something similar in
| ||||
|
feedback
|
|
If you are using a critical section for your lock then the equivalent is If you are using a mutex for your lock then the equivalent is to call If you are unfamiliar with Windows synchronisation objects, don't be fooled into preferring the mutex because it has a name that you are most familiar with from a pthreads background. So long as your synchronisation is within process, critical sections are more efficient and easier to use. | |||||
feedback
|
|
You could check the Boost library. They have something called shareable_locks. | |||
|
feedback
|