X-Git-Url: https://git.saurik.com/apple/xnu.git/blobdiff_plain/9bccf70c0258c7cac2dcb80011b2a964d884c552..2a1bd2d3eef5c7a7bb14f4bb9fdbca9a96ee4752:/osfmk/man/tvalspec.html diff --git a/osfmk/man/tvalspec.html b/osfmk/man/tvalspec.html old mode 100755 new mode 100644 index cdb56a439..5374a7526 --- a/osfmk/man/tvalspec.html +++ b/osfmk/man/tvalspec.html @@ -1 +1,44 @@ -
Structure - Defines format of system time values.
struct tvalspec { unsigned int tv_sec; clock_res_t tv_nsec; }; typedef struct tvalspec tvalspec_t;
The tvalspec structure defines the format of the time structure supplied to or returned from the kernel. This definition conforms to the Posix 1003.4 timespec definition where the tv_nsec structure member is valid if (0 =< tv_nsec < 109) and the time period described is ((tv_sec * 109) + tv_nsec) nanoseconds.
Functions: clock_get_time, clock_set_time, clock_sleep, clock_alarm, clock_alarm_reply.
Data Structures: mapped_tvalspec. \ No newline at end of file +
+Structure - Defines format of system time values. +
+struct tvalspec +{ + unsigned int tv_sec; + clock_res_t tv_nsec; +}; + +typedef struct tvalspec tvalspec_t; ++
+
+The tvalspec structure defines the format of the time +structure supplied to or +returned from the kernel. This definition conforms to the Posix +1003.4 timespec +definition where the tv_nsec structure member is valid +if (0 =< tv_nsec < 109) and +the time period described is ((tv_sec * 109) + tv_nsec) nanoseconds. +
+Functions: +clock_get_time, +clock_set_time, +clock_sleep, +clock_alarm, +clock_alarm_reply. +
+Data Structures: +mapped_tvalspec.