diff options
Diffstat (limited to 'core/sync_linux.odin')
| -rw-r--r-- | core/sync_linux.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/sync_linux.odin b/core/sync_linux.odin index 74f5cdc21..b77d51e0a 100644 --- a/core/sync_linux.odin +++ b/core/sync_linux.odin @@ -28,7 +28,7 @@ semaphore_post :: proc(s: ^Semaphore, count: int) { // win32.ReleaseSemaphore(s._handle, cast(i32)count, nil); } -semaphore_release :: proc(s: ^Semaphore) #inline { +semaphore_release :: inline proc(s: ^Semaphore) { semaphore_post(s, 1); } |