Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
couple of new sg_exec_* functions
[simgrid.git] / include / simgrid / exec.h
index b440156..b74cfad 100644 (file)
@@ -15,8 +15,11 @@ SG_BEGIN_DECL
 XBT_PUBLIC void sg_exec_set_bound(sg_exec_t exec, double bound);
 XBT_PUBLIC void sg_exec_set_host(sg_exec_t exec, sg_host_t new_host);
 XBT_PUBLIC double sg_exec_get_remaining(const_sg_exec_t exec);
+XBT_PUBLIC double sg_exec_get_remaining_ratio(const_sg_exec_t exec);
 
 XBT_PUBLIC void sg_exec_start(sg_exec_t exec);
+XBT_PUBLIC void sg_exec_cancel(sg_exec_t exec);
+XBT_PUBLIC int sg_exec_test(sg_exec_t exec);
 XBT_PUBLIC sg_error_t sg_exec_wait(sg_exec_t exec);
 XBT_PUBLIC sg_error_t sg_exec_wait_for(sg_exec_t exec, double timeout);