1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 21:58:12 +00:00

Kernel: Use Userspace<T> for the gettimeofday syscall

This commit is contained in:
Brian Gianforcaro 2020-08-04 22:18:51 -07:00 committed by Andreas Kling
parent 1eeaed31c2
commit baa070afb8
2 changed files with 2 additions and 2 deletions

View file

@ -238,7 +238,7 @@ public:
int sys$fchdir(int fd);
int sys$sleep(unsigned seconds);
int sys$usleep(useconds_t usec);
int sys$gettimeofday(timeval*);
int sys$gettimeofday(Userspace<timeval*>);
int sys$clock_gettime(clockid_t, timespec*);
int sys$clock_settime(clockid_t, timespec*);
int sys$clock_nanosleep(const Syscall::SC_clock_nanosleep_params*);