From c95228b128ea135ab0a931940725fab1ee335837 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Mon, 28 Jan 2019 04:16:01 +0100 Subject: 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. --- Kernel/Syscall.h | 1 + 1 file changed, 1 insertion(+) (limited to 'Kernel/Syscall.h') 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 -- cgit v1.2.3