Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
restore (and comment) a test for a feature
[simgrid.git] / examples / java / process / kill / Killer.java
index 2e96690..c82af1d 100644 (file)
@@ -25,16 +25,18 @@ public class Killer extends Process {
     } catch (MsgException e){
       e.printStackTrace();
       Msg.error("Cannot create the victim process!");
+      return;
     }
     sleep(10000);
     Msg.info("Resume Process");
-    if (poorVictim != null)
-      poorVictim.resume();
+    poorVictim.resume();
     sleep(1000);
     Msg.info("Kill Process");
-    if (poorVictim != null)
-      poorVictim.kill();
+    poorVictim.kill();
 
     Msg.info("Ok, goodbye now.");
+    // The actor can also commit a suicide with the following command
+    exit(); // This will forcefully stop the current actor
+    // Of course, it's not useful here at the end of the main function, but that's for the example (and to check that this still works in the automated tests)
   }
 }