summaryrefslogtreecommitdiff
path: root/Kernel/Syscall.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2020-01-11 10:31:33 +0100
committerAndreas Kling <awesomekling@gmail.com>2020-01-11 10:31:33 +0100
commit46830a0c32930aac3bb390317a87ef42e84f4a07 (patch)
tree6f5f169307f161aae2c19e646657f21cf925426e /Kernel/Syscall.h
parentc97bfbd6097a26fa107d9393c094fe22d9110a79 (diff)
downloadserenity-46830a0c32930aac3bb390317a87ef42e84f4a07.zip
Kernel: Pass a parameter struct to symlink()
Diffstat (limited to 'Kernel/Syscall.h')
-rw-r--r--Kernel/Syscall.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/Kernel/Syscall.h b/Kernel/Syscall.h
index 6e71d141d0..b2e2c39d8f 100644
--- a/Kernel/Syscall.h
+++ b/Kernel/Syscall.h
@@ -345,6 +345,11 @@ struct SC_mknod_params {
u32 dev;
};
+struct SC_symlink_params {
+ StringArgument target;
+ StringArgument linkpath;
+};
+
void initialize();
int sync();