mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-22 05:27:20 +00:00
[common] linux: stop event signals accumulating after they are serviced
This commit is contained in:
parent
fb9cf6cfbc
commit
f85b6418b8
@ -88,9 +88,10 @@ bool lgWaitEventAbs(LGEvent * handle, struct timespec * ts)
|
||||
assert(handle);
|
||||
|
||||
bool ret = true;
|
||||
int count = 0;
|
||||
int res;
|
||||
|
||||
while(ret && atomic_load(&handle->count) == 0)
|
||||
while(ret && (count = atomic_load(&handle->count)) == 0)
|
||||
{
|
||||
if (pthread_mutex_lock(&handle->mutex) != 0)
|
||||
{
|
||||
@ -132,7 +133,7 @@ bool lgWaitEventAbs(LGEvent * handle, struct timespec * ts)
|
||||
}
|
||||
|
||||
if (ret && handle->autoReset)
|
||||
atomic_fetch_sub(&handle->count, 1);
|
||||
atomic_fetch_sub(&handle->count, count);
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user