ARGOBOTS
dce6e727ffc4ca5b3ffc04cb9517c6689be51ec5
|
#include "abti.h"
Go to the source code of this file.
Functions | |
int | ABT_eventual_create (int nbytes, ABT_eventual *neweventual) |
Create a new eventual. More... | |
int | ABT_eventual_free (ABT_eventual *eventual) |
Free an eventual. More... | |
int | ABT_eventual_wait (ABT_eventual eventual, void **value) |
Wait on an eventual. More... | |
int | ABT_eventual_test (ABT_eventual eventual, void **value, ABT_bool *is_ready) |
Check if an eventual is ready. More... | |
int | ABT_eventual_set (ABT_eventual eventual, void *value, int nbytes) |
Signal an eventual. More... | |
int | ABT_eventual_reset (ABT_eventual eventual) |
Reset a readiness of an eventual. More... | |