42041dfd74
- runtime: bux_async_return(value, size) copies result to task->result - runtime: bux_async_await returns void* result pointer - runtime: bux_async_result(handle) to retrieve result - sema: ekAwait returns *void - HIR: await lowered to bux_async_await returning *void - Example: async Compute() -> int with interleaved execution and result await
43 lines
1.1 KiB
Plaintext
43 lines
1.1 KiB
Plaintext
import Std::Io::{PrintLine, PrintInt};
|
|
|
|
extern func bux_async_yield();
|
|
extern func bux_async_run();
|
|
extern func bux_async_spawn(fn: *void) -> *void;
|
|
extern func bux_async_await(handle: *void) -> *void;
|
|
extern func bux_async_return(value: *void, size: int64);
|
|
|
|
async func Compute() -> int {
|
|
PrintLine("Compute: step 1");
|
|
bux_async_yield();
|
|
PrintLine("Compute: step 2");
|
|
let result: int = 42;
|
|
bux_async_return((&result) as *void, sizeof(int));
|
|
return result;
|
|
}
|
|
|
|
async func Double() -> int {
|
|
PrintLine("Double: step 1");
|
|
bux_async_yield();
|
|
PrintLine("Double: step 2");
|
|
let result: int = 84;
|
|
bux_async_return((&result) as *void, sizeof(int));
|
|
return result;
|
|
}
|
|
|
|
func Main() -> int {
|
|
PrintLine("Main: start");
|
|
let h1: *void = spawn Compute();
|
|
let h2: *void = spawn Double();
|
|
let r1Ptr: *int = h1.await as *int;
|
|
let r2Ptr: *int = h2.await as *int;
|
|
let r1: int = *r1Ptr;
|
|
let r2: int = *r2Ptr;
|
|
PrintLine("Results:");
|
|
PrintInt(r1);
|
|
PrintLine("");
|
|
PrintInt(r2);
|
|
PrintLine("");
|
|
PrintLine("Main: done");
|
|
return 0;
|
|
}
|