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

Kernel+Userland: Make some of the POSIX types larger

Expand the following types from 32-bit to 64-bit:
- blkcnt_t
- blksize_t
- dev_t
- nlink_t
- suseconds_t
- clock_t

This matches their size on other 64-bit systems.
This commit is contained in:
Andreas Kling 2023-04-03 17:21:35 +02:00
parent d8bb32117e
commit b98f537f11
3 changed files with 8 additions and 8 deletions

View file

@ -416,7 +416,7 @@ struct SC_chown_params {
struct SC_mknod_params {
StringArgument path;
u16 mode;
u32 dev;
dev_t dev;
};
struct SC_symlink_params {