index
:
serenity
master
topic/trivial_docs
The Serenity Operating System 🐞
cos
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Kernel
/
Syscalls
/
clock.cpp
Age
Commit message (
Expand
)
Author
2021-09-05
Kernel: Use TRY() in sys$map_time_page()
Andreas Kling
2021-09-05
Kernel: Use copy_typed_from_user<T> for fetching syscall parameters
Andreas Kling
2021-09-05
Kernel: Make copy_{from,to}_user() return KResult and use TRY()
Andreas Kling
2021-08-10
Kernel+LibC: Allow clock_gettime() to run without syscalls
Andreas Kling
2021-08-10
Kernel+UserspaceEmulator: Remove unused sys$gettimeofday()
Andreas Kling
2021-08-06
Kernel: Disable big process lock for sys$gettimeofday
Idan Horowitz
2021-08-06
Kernel: Disable big process lock for sys$clock_nanosleep
Idan Horowitz
2021-08-06
Kernel: Disable big process lock for sys$clock_gettime()
Idan Horowitz
2021-07-20
Kernel: Annotate all syscalls with VERIFY_PROCESS_BIG_LOCK_ACQUIRED
Brian Gianforcaro
2021-06-28
Kernel: Fix the return type for syscalls
Gunnar Beutner
2021-05-05
Kernel: Modify TimeManagement::current_time(..) API so it can't fail. (#6869)
Brian Gianforcaro
2021-04-22
Everything: Move to SPDX license identifiers in all files.
Brian Gianforcaro
2021-03-15
Kernel: Don't return -EFOO when return type is KResultOr<...>
Andreas Kling
2021-03-02
Kernel: Make kgettimeofday use AK::Time
Ben Wiederhake
2021-03-02
Kernel: Make TimeManagement use AK::Time internally
Ben Wiederhake
2021-03-02
Kernel: Make Thread use AK::Time internally
Ben Wiederhake
2021-03-02
Kernel: Sanitize all user-supplied timeval's/timespec's
Ben Wiederhake
2021-03-01
Kernel: Make all syscall functions return KResultOr<T>
Andreas Kling
2021-02-13
Kernel: clock_nanosleep's 'flags' is not a bitset
Ben Wiederhake
2020-12-21
Kernel: Improve time keeping and dramatically reduce interrupt load
Tom
2020-12-02
Kernel: Add CLOCK_REALTIME support to the TimerQueue
Tom
2020-11-30
Kernel: Move some time related code from Scheduler into TimeManagement
Tom
2020-11-22
Kernel: Make CLOCK_MONOTONIC respect the system tick frequency
Andreas Kling
2020-11-10
Kernel+LibC: Add adjtime(2)
Nico Weber
2020-09-13
Kernel: Make copy_to/from_user safe and remove unnecessary checks
Tom
2020-09-07
Kernel: Let TimeManagement keep epoch time as timespec
Nico Weber
2020-08-10
Kernel: Use Userspace<T> for the clock_settime syscall
Brian Gianforcaro
2020-08-10
Kernel: Modifiy clock_settime timespec argument to const
Brian Gianforcaro
2020-08-10
Kernel: Use Userspace<T> for the clock_gettime syscall
Brian Gianforcaro
2020-08-05
Kernel: Use Userspace<T> for the clock_nanosleep syscall
Brian Gianforcaro
2020-08-05
Kernel: Use Userspace<T> for the gettimeofday syscall
Brian Gianforcaro
2020-07-30
Kernel: Move syscall implementations out of Process.cpp
Andreas Kling