Query: clock_settime
OS: osf1
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
clock_gettime(3) Library Functions Manual clock_gettime(3)NAMEclock_gettime, clock_settime - Obtains or sets the time for the specified clock (P1003.1b)LIBRARYRealtime Library (librt.so, librt.a)SYNOPSIS#include <time.h> int clock_gettime ( clockid_t clock_id, struct timespec *tp); int clock_settime ( clockid_t clock_id, const struct timespec *tp);PARAMETERSclock_id The clock type used to obtain the time for the clock that is set. The CLOCK_REALTIME clock is supported and represents the TIME-OF-DAY clock for the system. *tp A pointer to a timespec data structure.DESCRIPTIONThe clock_gettime function returns the current time (in seconds and nanoseconds) for the specified clock. The clock_settime function sets the specified clock. The CLOCK_REALTIME clock measures the amount of time elapsed since 00:00:00:00 January 1, 1970 Greenwich Mean Time (GMT), otherwise known as the Epoch. Time values that fall between two non-negative integer multiples of the resolution are truncated down to the smaller multiple of the resolution. You must have superuser privileges to use the clock_settime function.RETURN VALUESOn a successful call to the clock_gettime or clock_settime functions, a value of 0 (zero) is returned. On an unsuccessful call, a value of -1 is returned and errno is set to indicate that an error occurred.ERRORSThe clock_gettime and clock_settime functions fail under the following conditions: [EINVAL] The clock_id argument does not specify a known clock. The value pointed to by the tp argument to the clock_settime function is outside the range for the given clock_id. The tp argument specified a nanosecond value less than zero or greater than or equal to 1000 million. [EPERM] The requesting process does not have the appropriate privilege to set the specified clock.RELATED INFORMATIONFunctions: time(1), clock_getres(3), ctime(3), timer_gettime(3) Guide to Realtime Programming delim off clock_gettime(3)
Related Man Pages |
---|
clock_getres(3c) - opensolaris |
clock_gettime(3) - mojave |
clock_settime(3) - osf1 |
clock_gettime(3) - osf1 |
clock_getres(3rt) - sunos |
Similar Topics in the Unix Linux Community |
---|
Extract TIME |
undefined symbol: clock_gettime' error |
lightweight function for measuring time ( better than clock_getime ) |
Clock_getres function |
Time synch monitoring |