diff options
| author | gingerBill <bill@gingerbill.org> | 2023-01-02 00:35:12 +0000 |
|---|---|---|
| committer | gingerBill <bill@gingerbill.org> | 2023-01-02 00:35:12 +0000 |
| commit | da479c7628d827d4343f82954c7d09adff31876c (patch) | |
| tree | 7e0a4eaa8c911340ff55c983cb2c4e1368fd3336 /src/threading.cpp | |
| parent | 3c90a059571cb879a468a00c0ca26c9a35090c38 (diff) | |
Minor style change
Diffstat (limited to 'src/threading.cpp')
| -rw-r--r-- | src/threading.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/threading.cpp b/src/threading.cpp index e3f26a8a0..4c7aa8f92 100644 --- a/src/threading.cpp +++ b/src/threading.cpp @@ -193,10 +193,6 @@ gb_internal void semaphore_wait(Semaphore *s) { CONDITION_VARIABLE cond; }; - gb_internal void condition_init(Condition *c) { - } - gb_internal void condition_destroy(Condition *c) { - } gb_internal void condition_broadcast(Condition *c) { WakeAllConditionVariable(&c->cond); } |