diff options
| author | Ginger Bill <bill@gingerbill.org> | 2017-06-12 12:56:47 +0100 |
|---|---|---|
| committer | Ginger Bill <bill@gingerbill.org> | 2017-06-12 12:56:47 +0100 |
| commit | 0c05fc14327631b0fa70eadf60426d507812c4d5 (patch) | |
| tree | 8bb33e68c87221581da6ca6ec83b80b36de4bddc /core/sync_linux.odin | |
| parent | 33eeb5852190ea6a363eced57050ba739061a32b (diff) | |
Prefix `type` and `let` to replace `immutable`
Diffstat (limited to 'core/sync_linux.odin')
| -rw-r--r-- | core/sync_linux.odin | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/sync_linux.odin b/core/sync_linux.odin index f7a62adcf..228fb16b3 100644 --- a/core/sync_linux.odin +++ b/core/sync_linux.odin @@ -1,11 +1,11 @@ #import "atomics.odin"; #import "os.odin"; -const Semaphore = struct { +type Semaphore struct { // _handle: win32.Handle, } -const Mutex = struct { +type Mutex struct { _semaphore: Semaphore, _counter: i32, _owner: i32, |