mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-04 05:51:27 +12:00
atomic.hpp: fix typo
This commit is contained in:
parent
050e5b4aec
commit
ec1ea466fd
1 changed files with 1 additions and 1 deletions
|
@ -274,7 +274,7 @@ static u32 sema_alloc()
|
||||||
#ifdef USE_POSIX
|
#ifdef USE_POSIX
|
||||||
// Initialize semaphore (should be very fast)
|
// Initialize semaphore (should be very fast)
|
||||||
sem_init(&s_sema_list[id], 0, 0);
|
sem_init(&s_sema_list[id], 0, 0);
|
||||||
#elif defined(_WIN32) | defined(USE_FUTEX)
|
#elif defined(_WIN32) || defined(USE_FUTEX)
|
||||||
// Do nothing
|
// Do nothing
|
||||||
#else
|
#else
|
||||||
if (!s_sema_list[id])
|
if (!s_sema_list[id])
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue