summaryrefslogtreecommitdiffstats
path: root/eval.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2014-07-30 18:56:17 -0700
committerKaz Kylheku <kaz@kylheku.com>2014-07-30 18:56:17 -0700
commitb1acf6517d808242c6c46b09250925ff20861cc4 (patch)
tree67175dc4c16f8ee95b79043e2d35ce95879ba176 /eval.c
parentff4d78c938128cd0572f6469425005d9019a7f38 (diff)
downloadtxr-b1acf6517d808242c6c46b09250925ff20861cc4.tar.gz
txr-b1acf6517d808242c6c46b09250925ff20861cc4.tar.bz2
txr-b1acf6517d808242c6c46b09250925ff20861cc4.zip
* eval.c (getpid_wrap, getppid_wrap): New static functions.
(eval_init): Registered getpid and getppid intrinsics. * signal.c (kill_wrap): New static function. (sig-init): Registered kill intrinsic function. * txr.1: Documented getpid, gettpid and kill.
Diffstat (limited to 'eval.c')
-rw-r--r--eval.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/eval.c b/eval.c
index 9119b0f4..56005153 100644
--- a/eval.c
+++ b/eval.c
@@ -3294,6 +3294,18 @@ static val usleep_wrap(val usec)
return retval;
}
+#if HAVE_UNISTD_H
+static val getpid_wrap(void)
+{
+ return num(getpid());
+}
+
+static val getppid_wrap(void)
+{
+ return num(getppid());
+}
+#endif
+
static val env_hash(void)
{
val env_strings = env();
@@ -3997,6 +4009,10 @@ void eval_init(void)
reg_fun(intern(lit("errno"), user_package), func_n1o(errno_wrap, 0));
reg_fun(intern(lit("exit"), user_package), func_n1(exit_wrap));
reg_fun(intern(lit("usleep"), user_package), func_n1(usleep_wrap));
+#if HAVE_UNISTD_H
+ reg_fun(intern(lit("getpid"), user_package), func_n0(getpid_wrap));
+ reg_fun(intern(lit("getppid"), user_package), func_n0(getppid_wrap));
+#endif
reg_fun(intern(lit("env"), user_package), func_n0(env));
reg_fun(intern(lit("env-hash"), user_package), func_n0(env_hash));