aboutsummaryrefslogtreecommitdiff
path: root/core/c
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2023-03-16 13:35:38 +0000
committergingerBill <bill@gingerbill.org>2023-03-16 13:35:38 +0000
commite05944601a07e6cb9c0ec84f80ca4ca3511c84ea (patch)
tree79737628ab43980caa1c618c079bf0873f284c2e /core/c
parent49cf0125a936bdc5406ec7dcb0837470992f676c (diff)
Minor fixes
Diffstat (limited to 'core/c')
-rw-r--r--core/c/libc/threads.odin2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/c/libc/threads.odin b/core/c/libc/threads.odin
index 60c375bf8..8e3343234 100644
--- a/core/c/libc/threads.odin
+++ b/core/c/libc/threads.odin
@@ -44,7 +44,7 @@ when ODIN_OS == .Windows {
@(link_name="_Cnd_destroy") cnd_destroy :: proc(cond: ^cnd_t) ---
@(link_name="_Cnd_init") cnd_init :: proc(cond: ^cnd_t) -> int ---
@(link_name="_Cnd_signal") cnd_signal :: proc(cond: ^cnd_t) -> int ---
- @(link_name="_Cnd_timedwait") cnd_timedwait :: proc(cond: ^cnd_t, ts: ^timespec) -> int ---
+ @(link_name="_Cnd_timedwait") cnd_timedwait :: proc(cond: ^cnd_t, mtx: ^mtx_t, ts: ^timespec) -> int ---
@(link_name="_Cnd_wait") cnd_wait :: proc(cond: ^cnd_t, mtx: ^mtx_t) -> int ---
// 7.26.4 Mutex functions