1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 04:27:43 +00:00

Kernel: Pass a parameter struct to chown()

This commit is contained in:
Andreas Kling 2020-01-11 10:17:08 +01:00
parent 29b3d95004
commit 6536a80aa9
4 changed files with 21 additions and 6 deletions

View file

@ -333,6 +333,12 @@ struct SC_link_params {
StringArgument new_path;
};
struct SC_chown_params {
StringArgument path;
u32 uid;
u32 gid;
};
void initialize();
int sync();