X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/e34aedcc066725448eee18de1aea881fd6697ba1..4d1a33cbb6a28c29a8d432f10785a24f010b59e5:/include/simgrid/actor.h diff --git a/include/simgrid/actor.h b/include/simgrid/actor.h index 0e72156dd0..4dddd4620c 100644 --- a/include/simgrid/actor.h +++ b/include/simgrid/actor.h @@ -1,4 +1,4 @@ -/* Copyright (c) 2018. The SimGrid Team. All rights reserved. */ +/* Copyright (c) 2018-2019. 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. */ @@ -20,8 +20,8 @@ SG_BEGIN_DECL() You should not access directly to the fields of the pointed structure, but always use the provided API to interact with actors. */ -XBT_PUBLIC int sg_actor_get_PID(sg_actor_t actor); -XBT_PUBLIC int sg_actor_get_PPID(sg_actor_t actor); +XBT_PUBLIC aid_t sg_actor_get_PID(sg_actor_t actor); +XBT_PUBLIC aid_t sg_actor_get_PPID(sg_actor_t actor); XBT_PUBLIC sg_actor_t sg_actor_by_PID(aid_t pid); XBT_PUBLIC const char* sg_actor_get_name(sg_actor_t actor); XBT_PUBLIC sg_host_t sg_actor_get_host(sg_actor_t actor); @@ -31,6 +31,7 @@ XBT_PUBLIC void sg_actor_suspend(sg_actor_t actor); XBT_PUBLIC void sg_actor_resume(sg_actor_t actor); XBT_PUBLIC int sg_actor_is_suspended(sg_actor_t actor); XBT_PUBLIC sg_actor_t sg_actor_restart(sg_actor_t actor); +void sg_actor_set_auto_restart(sg_actor_t actor, int auto_restart); XBT_PUBLIC void sg_actor_daemonize(sg_actor_t actor); XBT_PUBLIC void sg_actor_migrate(sg_actor_t process, sg_host_t host); XBT_PUBLIC void sg_actor_join(sg_actor_t actor, double timeout); @@ -38,6 +39,9 @@ XBT_PUBLIC void sg_actor_kill(sg_actor_t actor); XBT_PUBLIC void sg_actor_kill_all(); XBT_PUBLIC void sg_actor_set_kill_time(sg_actor_t actor, double kill_time); XBT_PUBLIC void sg_actor_yield(); +XBT_PUBLIC void sg_actor_sleep_for(double duration); +XBT_PUBLIC sg_actor_t sg_actor_attach(const char* name, void* data, sg_host_t host, xbt_dict_t properties); +XBT_PUBLIC void sg_actor_detach(); SG_END_DECL() #endif /* INCLUDE_SIMGRID_ACTOR_H_ */