mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
14 lines
509 B
C
14 lines
509 B
C
|
#ifndef RB_WASM_SUPPORT_ASYNCIFY_H
|
||
|
#define RB_WASM_SUPPORT_ASYNCIFY_H
|
||
|
|
||
|
__attribute__((import_module("asyncify"), import_name("start_unwind")))
|
||
|
void asyncify_start_unwind(void *buf);
|
||
|
__attribute__((import_module("asyncify"), import_name("stop_unwind")))
|
||
|
void asyncify_stop_unwind(void);
|
||
|
__attribute__((import_module("asyncify"), import_name("start_rewind")))
|
||
|
void asyncify_start_rewind(void *buf);
|
||
|
__attribute__((import_module("asyncify"), import_name("stop_rewind")))
|
||
|
void asyncify_stop_rewind(void);
|
||
|
|
||
|
#endif
|