mirror of
https://github.com/gnif/LookingGlass.git
synced 2025-06-25 14:19:49 +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);
|
assert(handle);
|
||||||
|
|
||||||
bool ret = true;
|
bool ret = true;
|
||||||
|
int count = 0;
|
||||||
int res;
|
int res;
|
||||||
|
|
||||||
while(ret && atomic_load(&handle->count) == 0)
|
while(ret && (count = atomic_load(&handle->count)) == 0)
|
||||||
{
|
{
|
||||||
if (pthread_mutex_lock(&handle->mutex) != 0)
|
if (pthread_mutex_lock(&handle->mutex) != 0)
|
||||||
{
|
{
|
||||||
@ -132,7 +133,7 @@ bool lgWaitEventAbs(LGEvent * handle, struct timespec * ts)
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (ret && handle->autoReset)
|
if (ret && handle->autoReset)
|
||||||
atomic_fetch_sub(&handle->count, 1);
|
atomic_fetch_sub(&handle->count, count);
|
||||||
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user