mirror of
https://github.com/ziglang/zig.git
synced 2025-12-08 15:23:14 +00:00
16 lines
252 B
C
Vendored
16 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
|