-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Prompt interface and bug fixes #14
base: main
Are you sure you want to change the base?
Conversation
This patch abstracts away the fiber runtime initialisation and finalisation procedures.
This patch is a stab at defining a prompt-oriented interface. I have implemented a somewhat working version of it in Asyncify, though, there are some caveats around forwarding. I think we need a trampoline to make forwarding more robust.
$(ASYNCIFY) hello_prompt_asyncfiy.pre.wasm -o hello_prompt_asyncify.wasm | ||
chmod +x hello_prompt_asyncify.wasm | ||
|
||
hello_forward_prompt_asyncify.wasm: inc/fiber.h src/asyncify/asyncify_prompt_impl.c examples/prompt/hello_forward.c |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i think the examples/prompt
folder wasn't committed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks. The latest commit adds them.
// * ACTIVE: the fiber is actively executing. | ||
// * YIELDING: the fiber is suspended. | ||
// * DONE: the fiber is finished (i.e. run to completion). | ||
typedef enum { ACTIVE, YIELDING, DONE, FORWARDING, YIELD_FORWARDING } fiber_state_t; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i think YIELD_FORWARDING
might not be used anywhere
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Correct! Thanks.
This patch is a stab at defining a prompt-oriented interface. I have
implemented a somewhat working version of it in Asyncify, though,
there are some caveats around forwarding. I think we need a trampoline
to make forwarding more robust.