diff options
author | Andreas Kling <awesomekling@gmail.com> | 2020-01-11 10:31:33 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2020-01-11 10:31:33 +0100 |
commit | 46830a0c32930aac3bb390317a87ef42e84f4a07 (patch) | |
tree | 6f5f169307f161aae2c19e646657f21cf925426e /Kernel/Syscall.h | |
parent | c97bfbd6097a26fa107d9393c094fe22d9110a79 (diff) | |
download | serenity-46830a0c32930aac3bb390317a87ef42e84f4a07.zip |
Kernel: Pass a parameter struct to symlink()
Diffstat (limited to 'Kernel/Syscall.h')
-rw-r--r-- | Kernel/Syscall.h | 5 |
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(); |