Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
add vm_suspend stuff
[simgrid.git] / src / simix / smx_user.c
index 79a9fb1..79fd644 100644 (file)
@@ -292,6 +292,12 @@ void simcall_vm_start(smx_host_t vm)
   simcall_BODY_set_vm_state(vm, msg_vm_state_running);
 }
 
+void simcall_vm_suspend(smx_host_t vm)
+{
+  /* will jump to SIMIX_pre_vm_suspend */
+  simcall_BODY_vm_suspend(vm);
+}
+
 void simcall_vm_shutdown(smx_host_t vm)
 {
   /* will jump to SIMIX_pre_vm_shutdown */
@@ -300,7 +306,10 @@ void simcall_vm_shutdown(smx_host_t vm)
 
 void simcall_vm_destroy(smx_host_t vm)
 {
-  /* will jump to SIMIX_pre_vm_destroy */
+  /*
+   * simcall_BODY_ is defined in src/simix/smx_smurf_private.h.
+   * This function will jump to SIMIX_pre_vm_destroy.
+   **/
   simcall_BODY_vm_destroy(vm);
 }