Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Kill typedef lmm_system_t
[simgrid.git] / src / msg / msg_legacy.cpp
index 7e776ca..849f151 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2004-2017. The SimGrid Team. All rights reserved.          */
+/* Copyright (c) 2004-2018. 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. */
@@ -54,6 +54,23 @@ void MSG_process_daemonize(sg_actor_t actor)
 {
   sg_actor_daemonize(actor);
 }
+void MSG_process_migrate(sg_actor_t actor, sg_host_t host)
+{
+  sg_actor_migrate(actor, host);
+}
+void MSG_process_join(sg_actor_t actor, double timeout)
+{
+  sg_actor_join(actor, timeout);
+}
+void MSG_process_kill(sg_actor_t actor)
+{
+  sg_actor_kill(actor);
+}
+
+void MSG_process_set_kill_time(sg_actor_t actor, double kill_time)
+{
+  sg_actor_set_kill_time(actor, kill_time);
+}
 
 /* ************************** NetZones *************************** */
 sg_netzone_t MSG_zone_get_root()