X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/841d7ae6385610f340ae3c0be8273bdd9ec80cd5..a707ad979be7c88d7581f403661c67598d320d55:/include/simgrid/exec.h diff --git a/include/simgrid/exec.h b/include/simgrid/exec.h index 17e7ae9596..ba29c861b6 100644 --- a/include/simgrid/exec.h +++ b/include/simgrid/exec.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2018-2020. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2018-2022. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -7,18 +7,26 @@ #define INCLUDE_SIMGRID_EXEC_H_ #include -#include +#include /* ssize_t */ /* C interface */ SG_BEGIN_DECL XBT_PUBLIC void sg_exec_set_bound(sg_exec_t exec, double bound); -XBT_PUBLIC double sg_exec_get_remaining(sg_exec_t exec); +XBT_PUBLIC const char* sg_exec_get_name(const_sg_exec_t exec); +XBT_PUBLIC void sg_exec_set_name(sg_exec_t exec, const char* name); +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_wait(sg_exec_t exec); -XBT_PUBLIC void sg_exec_wait_for(sg_exec_t exec, double timeout); +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); +XBT_PUBLIC ssize_t sg_exec_wait_any_for(sg_exec_t* execs, size_t count, double timeout); +XBT_PUBLIC ssize_t sg_exec_wait_any(sg_exec_t* execs, size_t count); SG_END_DECL -#endif /* INCLUDE_SIMGRID_COMM_H_ */ +#endif /* INCLUDE_SIMGRID_EXEC_H_ */