summaryrefslogtreecommitdiff
path: root/Kernel/Syscall.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-01-28 04:16:01 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-01-28 04:16:01 +0100
commitc95228b128ea135ab0a931940725fab1ee335837 (patch)
treecd73d562f30b042559a2200458ab68510645a327 /Kernel/Syscall.h
parent031c62a21e4965afa38dc992cb6f7be0d214f224 (diff)
downloadserenity-c95228b128ea135ab0a931940725fab1ee335837.zip
Add support for removing directories.
It's really only supported in Ext2FS since SynthFS doesn't really want you mucking around with its files. This is pretty neat though :^) I ran into some trouble with HashMap while working on this but opted to work around it and leave that for a separate investigation.
Diffstat (limited to 'Kernel/Syscall.h')
-rw-r--r--Kernel/Syscall.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Kernel/Syscall.h b/Kernel/Syscall.h
index 1ef6138015..184ccda385 100644
--- a/Kernel/Syscall.h
+++ b/Kernel/Syscall.h
@@ -82,6 +82,7 @@
__ENUMERATE_SYSCALL(gui_set_window_rect) \
__ENUMERATE_SYSCALL(gui_notify_paint_finished) \
__ENUMERATE_SYSCALL(gui_set_global_cursor_tracking_enabled) \
+ __ENUMERATE_SYSCALL(rmdir) \
#ifdef SERENITY