ARGOBOTS
dce6e727ffc4ca5b3ffc04cb9517c6689be51ec5
|
#include "abti.h"
Go to the source code of this file.
Functions | |
int | ABT_future_create (uint32_t num_compartments, void(*cb_func)(void **arg), ABT_future *newfuture) |
Create a new future. More... | |
int | ABT_future_free (ABT_future *future) |
Free a future. More... | |
int | ABT_future_wait (ABT_future future) |
Wait on a future. More... | |
int | ABT_future_test (ABT_future future, ABT_bool *is_ready) |
Check if a future is ready. More... | |
int | ABT_future_set (ABT_future future, void *value) |
Signal a future. More... | |
int | ABT_future_reset (ABT_future future) |
Reset readiness of a future. More... | |