mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-12-04 05:20:30 +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:
parent
b4d04fd8d1
commit
1be6145fdf
Notes:
sideshowbarker
2024-07-19 04:05:57 +09:00
Author: https://github.com/bgianfo Commit: https://github.com/SerenityOS/serenity/commit/1be6145fdff Pull-request: https://github.com/SerenityOS/serenity/pull/3062 Reviewed-by: https://github.com/awesomekling
2 changed files with 2 additions and 2 deletions
|
@ -248,7 +248,7 @@ public:
|
||||||
int sys$usleep(useconds_t usec);
|
int sys$usleep(useconds_t usec);
|
||||||
int sys$gettimeofday(Userspace<timeval*>);
|
int sys$gettimeofday(Userspace<timeval*>);
|
||||||
int sys$clock_gettime(clockid_t, Userspace<timespec*>);
|
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$clock_nanosleep(Userspace<const Syscall::SC_clock_nanosleep_params*>);
|
||||||
int sys$gethostname(char*, ssize_t);
|
int sys$gethostname(char*, ssize_t);
|
||||||
int sys$sethostname(const char*, ssize_t);
|
int sys$sethostname(const char*, ssize_t);
|
||||||
|
|
|
@ -54,7 +54,7 @@ int Process::sys$clock_gettime(clockid_t clock_id, Userspace<timespec*> user_ts)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
int Process::sys$clock_settime(clockid_t clock_id, timespec* user_ts)
|
int Process::sys$clock_settime(clockid_t clock_id, const timespec* user_ts)
|
||||||
{
|
{
|
||||||
REQUIRE_PROMISE(settime);
|
REQUIRE_PROMISE(settime);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue