diff options
| author | Laytan Laats <laytanlaats@hotmail.com> | 2023-08-11 20:21:42 +0200 |
|---|---|---|
| committer | Laytan Laats <laytanlaats@hotmail.com> | 2023-08-11 20:21:42 +0200 |
| commit | ccc94f683216e1be33f2400a9dd813a0616b3af0 (patch) | |
| tree | 0ffd147affa30274e7a02e866a1b8d3ce83b1c3f /core/sync | |
| parent | 589820639c38979f4c801e8edcbb62c21ca15099 (diff) | |
add wait group to wait proc group
Diffstat (limited to 'core/sync')
| -rw-r--r-- | core/sync/sync_util.odin | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/core/sync/sync_util.odin b/core/sync/sync_util.odin index 4add9064d..0c948eb9e 100644 --- a/core/sync/sync_util.odin +++ b/core/sync/sync_util.odin @@ -88,6 +88,7 @@ wait :: proc{ atomic_cond_wait, atomic_sema_wait, futex_wait, + wait_group_wait, } wait_with_timeout :: proc{ @@ -96,6 +97,7 @@ wait_with_timeout :: proc{ atomic_cond_wait_with_timeout, atomic_sema_wait_with_timeout, futex_wait_with_timeout, + wait_group_wait_with_timeout, } post :: proc{ |