aboutsummaryrefslogtreecommitdiff
path: root/src/threading.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2023-01-02 00:35:12 +0000
committergingerBill <bill@gingerbill.org>2023-01-02 00:35:12 +0000
commitda479c7628d827d4343f82954c7d09adff31876c (patch)
tree7e0a4eaa8c911340ff55c983cb2c4e1368fd3336 /src/threading.cpp
parent3c90a059571cb879a468a00c0ca26c9a35090c38 (diff)
Minor style change
Diffstat (limited to 'src/threading.cpp')
-rw-r--r--src/threading.cpp4
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);
}