diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-01-28 04:16:01 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-01-28 04:16:01 +0100 |
commit | c95228b128ea135ab0a931940725fab1ee335837 (patch) | |
tree | cd73d562f30b042559a2200458ab68510645a327 /Kernel/Syscall.h | |
parent | 031c62a21e4965afa38dc992cb6f7be0d214f224 (diff) | |
download | serenity-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.h | 1 |
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 |