mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 06:44:57 +01:00
Explicitly initialize futex word
This is mainly to silence valgrind warnings, the actual value is irrelevant here.
This commit is contained in:
parent
949f9e6051
commit
2ae670055d
1 changed files with 2 additions and 1 deletions
|
|
@ -52,6 +52,7 @@ Semaphore::Semaphore (const char* name, int val)
|
||||||
#elif defined USE_FUTEX_SEMAPHORE
|
#elif defined USE_FUTEX_SEMAPHORE
|
||||||
(void)name; /* stop warning */
|
(void)name; /* stop warning */
|
||||||
_value = val;
|
_value = val;
|
||||||
|
_futex = 0;
|
||||||
#else
|
#else
|
||||||
(void) name; /* stop gcc warning on !Apple systems */
|
(void) name; /* stop gcc warning on !Apple systems */
|
||||||
|
|
||||||
|
|
@ -116,7 +117,7 @@ int
|
||||||
Semaphore::wait ()
|
Semaphore::wait ()
|
||||||
{
|
{
|
||||||
if (std::atomic_fetch_sub_explicit (&_value, 1, std::memory_order_relaxed) <= 0) {
|
if (std::atomic_fetch_sub_explicit (&_value, 1, std::memory_order_relaxed) <= 0) {
|
||||||
syscall(SYS_futex, &_futex, FUTEX_WAIT_PRIVATE, _futex, NULL, 0, 0);
|
syscall(SYS_futex, &_futex, FUTEX_WAIT_PRIVATE, _futex, NULL, NULL, 0);
|
||||||
}
|
}
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue