mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-07 22:34:28 +00:00
15 lines
252 B
C
Vendored
15 lines
252 B
C
Vendored
#ifndef __wasi_libc_busywait_h
|
|
#define __wasi_libc_busywait_h
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/// Enable busywait in futex on current thread.
|
|
void __wasilibc_enable_futex_busywait_on_current_thread(void);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif
|