diff options
| author | Ginger Bill <bill@gingerbill.org> | 2017-07-10 13:49:50 +0100 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2017-07-10 13:49:50 +0100 |
| commit | 66e4aaffc5d29710360ae238ab0c1285642ab6b8 (patch) | |
| tree | 0a525411b3160616de9a7a7034a3b1298021d6b6 /core/sync_linux.odin | |
| parent | 81336b58cb17b5a31da7039be1ff4a6f0aa8f184 (diff) | |
Use semicolons as field delimiters in records
Diffstat (limited to 'core/sync_linux.odin')
| -rw-r--r-- | core/sync_linux.odin | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/core/sync_linux.odin b/core/sync_linux.odin index 5874c70f0..a6c1338da 100644 --- a/core/sync_linux.odin +++ b/core/sync_linux.odin @@ -4,14 +4,14 @@ import ( ) Semaphore :: struct { - // _handle: win32.Handle, + // _handle: win32.Handle; } Mutex :: struct { - _semaphore: Semaphore, - _counter: i32, - _owner: i32, - _recursion: i32, + _semaphore: Semaphore; + _counter: i32; + _owner: i32; + _recursion: i32; } current_thread_id :: proc() -> i32 { |