Commit 640fe745 authored by Thomas Gleixner's avatar Thomas Gleixner

posix-timers: Document nanosleep() details

The descriptions for common_nsleep() is wrong and common_nsleep_timens()
lacks any form of comment.
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
Reviewed-by: default avatarFrederic Weisbecker <frederic@kernel.org>
Link: https://lore.kernel.org/r/20230425183313.567072835@linutronix.de
parent 3561fcb4
...@@ -1370,7 +1370,7 @@ SYSCALL_DEFINE2(clock_getres_time32, clockid_t, which_clock, ...@@ -1370,7 +1370,7 @@ SYSCALL_DEFINE2(clock_getres_time32, clockid_t, which_clock,
#endif #endif
/* /*
* nanosleep for monotonic and realtime clocks * sys_clock_nanosleep() for CLOCK_REALTIME and CLOCK_TAI
*/ */
static int common_nsleep(const clockid_t which_clock, int flags, static int common_nsleep(const clockid_t which_clock, int flags,
const struct timespec64 *rqtp) const struct timespec64 *rqtp)
...@@ -1382,8 +1382,13 @@ static int common_nsleep(const clockid_t which_clock, int flags, ...@@ -1382,8 +1382,13 @@ static int common_nsleep(const clockid_t which_clock, int flags,
which_clock); which_clock);
} }
/*
* sys_clock_nanosleep() for CLOCK_MONOTONIC and CLOCK_BOOTTIME
*
* Absolute nanosleeps for these clocks are time-namespace adjusted.
*/
static int common_nsleep_timens(const clockid_t which_clock, int flags, static int common_nsleep_timens(const clockid_t which_clock, int flags,
const struct timespec64 *rqtp) const struct timespec64 *rqtp)
{ {
ktime_t texp = timespec64_to_ktime(*rqtp); ktime_t texp = timespec64_to_ktime(*rqtp);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment