|
#define | GLOBUS_CALLBACK_MODULE |
| Module descriptor. More...
|
|
#define | GLOBUS_POLL_MODULE |
| Module descriptor. More...
|
|
#define | GLOBUS_CALLBACK_GLOBAL_SPACE |
| Global callback space. More...
|
|
#define | GLOBUS_SIGNAL_INTERRUPT |
|
|
#define | globus_callback_poll(a) |
| Poll the global callback space. More...
|
|
#define | globus_poll_blocking() |
| Blocking poll of the global callback space. More...
|
|
#define | globus_poll_nonblocking() |
| Nonblocking poll of the global callback space. More...
|
|
#define | globus_poll() |
| Nonblocking poll of the global callback space. More...
|
|
#define | globus_signal_poll() |
| Wake up callback polling thread. More...
|
|
#define | globus_callback_register_oneshot( callback_handle, delay_time, callback_func, callback_user_arg) |
| Register a oneshot function in the global callback space. More...
|
|
#define | globus_callback_register_periodic( callback_handle, delay_time, period, callback_func, callback_user_arg) |
| Register a periodic function in the global callback space. More...
|
|
#define | globus_callback_register_signal_handler( signum, persist, callback_func, callback_user_arg) |
| Register a signal handler in the global callback space. More...
|
|
|
globus_result_t | globus_callback_space_init (globus_callback_space_t *space, globus_callback_space_attr_t attr) |
| Initialize a user space. More...
|
|
globus_result_t | globus_callback_space_reference (globus_callback_space_t space) |
| Take a reference to a space. More...
|
|
globus_result_t | globus_callback_space_destroy (globus_callback_space_t space) |
| Destroy a reference to a user space. More...
|
|
globus_result_t | globus_callback_space_attr_init (globus_callback_space_attr_t *attr) |
| Initialize a space attr. More...
|
|
globus_result_t | globus_callback_space_attr_destroy (globus_callback_space_attr_t attr) |
| Destroy a space attr. More...
|
|
globus_result_t | globus_callback_space_attr_set_behavior (globus_callback_space_attr_t attr, globus_callback_space_behavior_t behavior) |
| Set the behavior of a space. More...
|
|
globus_result_t | globus_callback_space_attr_get_behavior (globus_callback_space_attr_t attr, globus_callback_space_behavior_t *behavior) |
| Get the behavior associated with an attr. More...
|
|
globus_result_t | globus_callback_space_get (globus_callback_space_t *space) |
| Retrieve the space of a currently running callback. More...
|
|
int | globus_callback_space_get_depth (globus_callback_space_t space) |
| Retrieve the current nesting level of a space. More...
|
|
globus_bool_t | globus_callback_space_is_single (globus_callback_space_t space) |
| See if the specified space is a single threaded behavior space. More...
|
|
globus_result_t | globus_callback_space_register_signal_handler (int signum, globus_bool_t persist, globus_callback_func_t callback_func, void *callback_user_arg, globus_callback_space_t space) |
| Fire a callback when the specified signal is received. More...
|
|
globus_result_t | globus_callback_unregister_signal_handler (int signum, globus_callback_func_t unregister_callback, void *unreg_arg) |
| Unregister a signal handling callback. More...
|
|
void | globus_callback_add_wakeup_handler (void(*wakeup)(void *), void *user_arg) |
| Register a wakeup handler with callback library. More...
|
|
|
globus_result_t | globus_callback_space_register_oneshot (globus_callback_handle_t *callback_handle, const globus_reltime_t *delay_time, globus_callback_func_t callback_func, void *callback_user_arg, globus_callback_space_t space) |
| Register a oneshot some delay from now. More...
|
|
|
globus_result_t | globus_callback_space_register_periodic (globus_callback_handle_t *callback_handle, const globus_reltime_t *delay_time, const globus_reltime_t *period, globus_callback_func_t callback_func, void *callback_user_arg, globus_callback_space_t space) |
| Register a periodic callback. More...
|
|
globus_result_t | globus_callback_unregister (globus_callback_handle_t callback_handle, globus_callback_func_t unregister_callback, void *unreg_arg, globus_bool_t *active) |
| Unregister a callback. More...
|
|
globus_result_t | globus_callback_adjust_oneshot (globus_callback_handle_t callback_handle, const globus_reltime_t *new_delay) |
| Adjust the delay of a oneshot callback. More...
|
|
globus_result_t | globus_callback_adjust_period (globus_callback_handle_t callback_handle, const globus_reltime_t *new_period) |
| Adjust the period of a periodic callback. More...
|
|
|
void | globus_callback_space_poll (const globus_abstime_t *timestop, globus_callback_space_t space) |
| Poll for ready callbacks. More...
|
|
void | globus_callback_signal_poll () |
| Signal the poll. More...
|
|
|
globus_bool_t | globus_callback_get_timeout (globus_reltime_t *time_left) |
| Get the amount of time left in a callback. More...
|
|
globus_bool_t | globus_callback_has_time_expired () |
| See if there is remaining time in a callback. More...
|
|
globus_bool_t | globus_callback_was_restarted () |
| See if a callback has been restarted. More...
|
|