summaryrefslogtreecommitdiff
path: root/Kernel/Process.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2018-11-18 14:57:41 +0100
committerAndreas Kling <awesomekling@gmail.com>2018-11-18 15:02:16 +0100
commitde4604ac95261fe95f5921b0d16ee65fb501332a (patch)
tree16bf9be7e4d94862179c99d5cdcee29a0b7ca744 /Kernel/Process.h
parent303577df16cf990d1c0cb2c83cd8a954258809ba (diff)
downloadserenity-de4604ac95261fe95f5921b0d16ee65fb501332a.zip
Finally hook up the mkdir code to a syscall.
Added a /bin/mkdir that makes directories. How very neat :^) There are various limitations because of missing functionality.
Diffstat (limited to 'Kernel/Process.h')
-rw-r--r--Kernel/Process.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Kernel/Process.h b/Kernel/Process.h
index 47a5c5e7fd..e5d8929228 100644
--- a/Kernel/Process.h
+++ b/Kernel/Process.h
@@ -172,6 +172,7 @@ public:
int sys$access(const char* pathname, int mode);
int sys$fcntl(int fd, int cmd, dword extra_arg);
int sys$ioctl(int fd, unsigned request, unsigned arg);
+ int sys$mkdir(const char* pathname, mode_t mode);
static void initialize();