summaryrefslogtreecommitdiffstats
path: root/sysif.c
diff options
context:
space:
mode:
authorKaz Kylheku <kaz@kylheku.com>2015-04-16 07:08:05 -0700
committerKaz Kylheku <kaz@kylheku.com>2015-04-16 07:08:05 -0700
commit83aea1f74dd3de219de053d9162f8b217b0530ca (patch)
tree0f44c6424a853a88bbe80c074f7525c1c343d39a /sysif.c
parent656dfb6b5ebde7c8e719fa34570c6725cc3c1640 (diff)
downloadtxr-83aea1f74dd3de219de053d9162f8b217b0530ca.tar.gz
txr-83aea1f74dd3de219de053d9162f8b217b0530ca.tar.bz2
txr-83aea1f74dd3de219de053d9162f8b217b0530ca.zip
Adding chmod.
* configure: Detect chmod. * sysif.c (chmod_wrap): New function. (sysif_init): Register chmod intrinsic. * txr.1: Documented. * tl.vim, txr.vim: Regenerated.
Diffstat (limited to 'sysif.c')
-rw-r--r--sysif.c20
1 files changed, 20 insertions, 0 deletions
diff --git a/sysif.c b/sysif.c
index 1126abf2..64a453b0 100644
--- a/sysif.c
+++ b/sysif.c
@@ -325,6 +325,22 @@ static val mknod_wrap(val path, val mode, val dev)
#endif
+#if HAVE_CHMOD
+
+static val chmod_wrap(val path, val mode)
+{
+ char *u8path = utf8_dup_to(c_str(path));
+ int err = chmod(u8path, c_num(mode));
+ free(u8path);
+
+ if (err < 0)
+ uw_throwf(file_error_s, lit("chmod ~a ~a: ~a/~s"),
+ path, mode, num(errno), string_utf8(strerror(errno)), nao);
+ return t;
+}
+
+#endif
+
#if HAVE_SYMLINK
static val symlink_wrap(val target, val to)
@@ -548,6 +564,10 @@ void sysif_init(void)
reg_fun(intern(lit("mknod"), user_package), func_n3(mknod_wrap));
#endif
+#if HAVE_CHMOD
+ reg_fun(intern(lit("chmod"), user_package), func_n2(chmod_wrap));
+#endif
+
#if HAVE_SYMLINK
reg_fun(intern(lit("symlink"), user_package), func_n2(symlink_wrap));
reg_fun(intern(lit("link"), user_package), func_n2(link_wrap));