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

Kernel: Modifiy clock_settime timespec argument to const

The timeppec paramter is read only, and should be const.
This commit is contained in:
Brian Gianforcaro 2020-08-09 12:45:39 -07:00 committed by Andreas Kling
parent b4d04fd8d1
commit 1be6145fdf
2 changed files with 2 additions and 2 deletions

View file

@ -248,7 +248,7 @@ public:
int sys$usleep(useconds_t usec);
int sys$gettimeofday(Userspace<timeval*>);
int sys$clock_gettime(clockid_t, Userspace<timespec*>);
int sys$clock_settime(clockid_t, timespec*);
int sys$clock_settime(clockid_t, const timespec*);
int sys$clock_nanosleep(Userspace<const Syscall::SC_clock_nanosleep_params*>);
int sys$gethostname(char*, ssize_t);
int sys$sethostname(const char*, ssize_t);