lib/core: add `Sys::pid`
authorJean Privat <jean@pryen.org>
Wed, 25 May 2016 19:33:34 +0000 (15:33 -0400)
committerJean Privat <jean@pryen.org>
Wed, 25 May 2016 19:33:34 +0000 (15:33 -0400)
Signed-off-by: Jean Privat <jean@pryen.org>

lib/core/exec.nit

index 10c5374..76d9d63 100644 (file)
@@ -324,6 +324,9 @@ redef class Sys
        do
                return command.to_cstring.system
        end
+
+       # The pid of the program
+       fun pid: Int `{ return getpid(); `}
 end
 
 redef class NativeString