1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- #ifndef __STARPU_EXPERT_H__
- #define __STARPU_EXPERT_H__
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- void starpu_wake_all_blocked_workers(void);
- int starpu_progression_hook_register(unsigned (*func)(void *arg), void *arg);
- void starpu_progression_hook_deregister(int hook_id);
- int starpu_idle_hook_register(unsigned (*func)(void *arg), void *arg);
- void starpu_idle_hook_deregister(int hook_id);
- #ifdef __cplusplus
- }
- #endif
- #endif
|