X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/791c47938b9949634b75322fa9905625b391144f..0148c7da36c56897bde72a1d050d288b87762cfc:/include/simgrid/actor.h diff --git a/include/simgrid/actor.h b/include/simgrid/actor.h index 6ab028ba38..b35f30de7e 100644 --- a/include/simgrid/actor.h +++ b/include/simgrid/actor.h @@ -27,6 +27,8 @@ XBT_PUBLIC sg_actor_t sg_actor_init(const char* name, sg_host_t host); * * Note that argv is copied over, so you should free your own copy once the actor is started. */ XBT_PUBLIC void sg_actor_start(sg_actor_t actor, xbt_main_func_t code, int argc, const char* const* argv); +XBT_PUBLIC void sg_actor_set_stacksize(sg_actor_t actor, unsigned size); + XBT_PUBLIC void sg_actor_exit(); XBT_PUBLIC void sg_actor_on_exit(int_f_int_pvoid_t fun, void* data);