UnixOperatingSystem.st
changeset 21769 99e8c78bf219
parent 21620 f13226508305
child 21772 04a96a4b3c45
--- a/UnixOperatingSystem.st	Tue May 23 03:41:54 2017 +0000
+++ b/UnixOperatingSystem.st	Tue May 23 16:18:20 2017 +0200
@@ -3436,7 +3436,7 @@
                     if (dirName == nil || chdir((char *)__stringVal(dirName)) == 0) {
                         execve((char *)__stringVal(aCommandPath), argv, _nEnv);
                     }
-                    /* reached if chdir failed or aCommandPathh cannot be executed */
+                    /* reached if chdir failed or aCommandPath cannot be executed */
                     _exit(127);                 /* POSIX 2 compatible exit value */
                 }
             } else {
@@ -3507,6 +3507,8 @@
      OperatingSystem sendSignal:(OperatingSystem sigTERM) to:id.
      OperatingSystem sendSignal:(OperatingSystem sigKILL) to:id
     "
+
+    "Modified: / 23-05-2017 / 16:14:26 / mawalch"
 !
 
 fork