ARGOBOTS
|
#include "abti.h"
Go to the source code of this file.
Functions | |
int | ABT_thread_attr_create (ABT_thread_attr *newattr) |
Create a new ULT attribute object. More... | |
int | ABT_thread_attr_free (ABT_thread_attr *attr) |
Free the ULT attribute object. More... | |
int | ABT_thread_attr_set_stack (ABT_thread_attr attr, void *stackaddr, size_t stacksize) |
Set stack attributes. More... | |
int | ABT_thread_attr_get_stack (ABT_thread_attr attr, void **stackaddr, size_t *stacksize) |
Get stack attributes. More... | |
int | ABT_thread_attr_set_stacksize (ABT_thread_attr attr, size_t stacksize) |
Set the stack size in the attribute object. More... | |
int | ABT_thread_attr_get_stacksize (ABT_thread_attr attr, size_t *stacksize) |
Get the stack size from the attribute object. More... | |
int | ABT_thread_attr_set_callback (ABT_thread_attr attr, void(*cb_func)(ABT_thread thread, void *cb_arg), void *cb_arg) |
Set callback function and its argument in the attribute object. More... | |
int | ABT_thread_attr_set_migratable (ABT_thread_attr attr, ABT_bool flag) |
Set the ULT's migratability in the attribute object. More... | |