diff --git a/core/procs.go b/core/procs.go index 28be2d6c0..94af5e245 100644 --- a/core/procs.go +++ b/core/procs.go @@ -38,7 +38,7 @@ const ( PRINT_IF_NOT_NIL ) -const VERSION = "v1.0.0" +const VERSION = "v1.0.1" const ( CLJ Dialect = iota diff --git a/docs/joker.os.html b/docs/joker.os.html index abb6e46ba..e8f6d5691 100644 --- a/docs/joker.os.html +++ b/docs/joker.os.html @@ -29,6 +29,42 @@
SIGABRT
+ + +SIGALRM
+ + +SIGFPE
+ + +SIGHUP
+ + +SIGILL
+ + +SIGINT
+ + +SIGKILL
+ + +SIGPIPE
+ + +SIGQUIT
+ + +SIGSEGV
+ + +SIGTERM
+ + +SIGTRAP
+ + +Returns the host name reported by the kernel.
+ +++(kill pid)
Causes the process with the given PID to exit immediately.
+ Only kills the process itself, not any other processes it may have started.
++(signal pid signal)
Sends signal to the process with the given PID.
+ + +++(start name opts)
Starts a new process with the program specified by name.
+ opts is a map with the same keys as in exec.
+ Doesn't wait for the process to finish.
+ Returns the process's PID.