Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
CpuTiTmgr: further cleanups (make the enum class private)
[simgrid.git] / examples / java / process / kill / Killer.java
index 49bfc404a6a6bfea8c3dd161d14e808b2bfba7d5..cb4bbe1f8b3bb292cf9458dee2367ffe0b67888a 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (c) 2006-2014. The SimGrid Team.
+/* Copyright (c) 2006-2018. The SimGrid Team.
  * All rights reserved.                                                     */
 
 /* This program is free software; you can redistribute it and/or modify it
@@ -23,16 +23,20 @@ public class Killer extends Process {
       poorVictim = new Victim("Boivin","victim");
       poorVictim.start();
     } 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");
     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)
   }
 }