]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man2/clock_getres.2
mmap.2: Minor fixes to Cyril Hrubis's patch
[thirdparty/man-pages.git] / man2 / clock_getres.2
CommitLineData
fea681da
MK
1.\" Hey Emacs! This file is -*- nroff -*- source.
2.\"
3.\" Copyright (c) 2003 Nick Clifford (zaf@nrc.co.nz), Jan 25, 2003
4.\" Copyright (c) 2003 Andries Brouwer (aeb@cwi.nl), Aug 24, 2003
5.\"
6.\" Permission is granted to make and distribute verbatim copies of this
7.\" manual provided the copyright notice and this permission notice are
8.\" preserved on all copies.
9.\"
10.\" Permission is granted to copy and distribute modified versions of this
11.\" manual under the conditions for verbatim copying, provided that the
12.\" entire resulting derived work is distributed under the terms of a
13.\" permission notice identical to this one.
c13182ef 14.\"
fea681da
MK
15.\" Since the Linux kernel and libraries are constantly changing, this
16.\" manual page may be incorrect or out-of-date. The author(s) assume no
17.\" responsibility for errors or omissions, or for damages resulting from
18.\" the use of the information contained herein. The author(s) may not
19.\" have taken the same level of care in the production of this manual,
20.\" which is licensed free of charge, as they might when working
21.\" professionally.
c13182ef 22.\"
fea681da
MK
23.\" Formatted or processed versions of this manual, if unaccompanied by
24.\" the source, must acknowledge the copyright and authors of this work.
25.\"
26.\" 2003-08-23 Martin Schulze <joey@infodrom.org> improvements
27.\" 2003-08-24 aeb, large parts rewritten
28.\" 2004-08-06 Christoph Lameter <clameter@sgi.com>, SMP note
29.\"
0245dc09
MK
30.\" FIXME: Linux 2.6.39 adds CLOCK_BOOTTIME
31.\"
0d3bd760 32.TH CLOCK_GETRES 2 2012-11-07 "" "Linux Programmer's Manual"
fea681da
MK
33.SH NAME
34clock_getres, clock_gettime, clock_settime \- clock and time functions
35.SH SYNOPSIS
36.B #include <time.h>
37.sp
38.BI "int clock_getres(clockid_t " clk_id ", struct timespec *" res );
5895e7eb 39
fea681da 40.BI "int clock_gettime(clockid_t " clk_id ", struct timespec *" tp );
5895e7eb 41
fea681da 42.BI "int clock_settime(clockid_t " clk_id ", const struct timespec *" tp );
cc4615cc 43.sp
02959991 44Link with \fI\-lrt\fP (only for glibc versions before 2.17).
b905d225 45.sp
cc4615cc
MK
46.in -4n
47Feature Test Macro Requirements for glibc (see
48.BR feature_test_macros (7)):
49.in
50.sp
51.ad l
52.BR clock_getres (),
53.BR clock_gettime (),
54.BR clock_settime ():
8260c01f 55.RS
cc4615cc 56_POSIX_C_SOURCE\ >=\ 199309L
8260c01f 57.RE
cc4615cc 58.ad b
fea681da
MK
59.SH DESCRIPTION
60The function
61.BR clock_getres ()
62finds the resolution (precision) of the specified clock
63.IR clk_id ,
64and, if
65.I res
0c2ec4f1 66is non-NULL, stores it in the \fIstruct timespec\fP pointed to by
fea681da
MK
67.IR res .
68The resolution of clocks depends on the implementation and cannot be
69configured by a particular process.
70If the time value pointed to by the argument
71.I tp
72of
73.BR clock_settime ()
74is not a multiple of
75.IR res ,
76then it is truncated to a multiple of
77.IR res .
78.PP
79The functions
80.BR clock_gettime ()
81and
82.BR clock_settime ()
83retrieve and set the time of the specified clock
84.IR clk_id .
85.PP
86The
87.I res
88and
89.I tp
90arguments are
f19a0f03 91.I timespec
4e836144 92structures, as specified in
c13182ef 93.IR <time.h> :
fea681da 94.sp
3ad4ddcd 95.in +4n
fea681da
MK
96.nf
97struct timespec {
cc4615cc
MK
98 time_t tv_sec; /* seconds */
99 long tv_nsec; /* nanoseconds */
fea681da
MK
100};
101.fi
3ad4ddcd 102.in
fea681da 103.PP
c13182ef 104The
fea681da
MK
105.I clk_id
106argument is the identifier of the particular clock on which to act.
107A clock may be system-wide and hence visible for all processes, or
108per-process if it measures time only within a single process.
109.LP
6f36deb4 110All implementations support the system-wide real-time clock,
fea681da
MK
111which is identified by
112.BR CLOCK_REALTIME .
113Its time represents seconds and nanoseconds since the Epoch.
114When its time is changed, timers for a relative interval are
115unaffected, but timers for an absolute point in time are affected.
116.LP
c13182ef
MK
117More clocks may be implemented.
118The interpretation of the
fea681da
MK
119corresponding time values and the effect on timers is unspecified.
120.LP
5260fe08 121Sufficiently recent versions of glibc and the Linux kernel
fea681da
MK
122support the following clocks:
123.TP
124.B CLOCK_REALTIME
22594a3c 125System-wide clock that measures real (i.e., wall-clock) time.
fea681da 126Setting this clock requires appropriate privileges.
22594a3c
MK
127This clock is affected by discontinuous jumps in the system time
128(e.g., if the system administrator manually changes the clock),
129and by the incremental adjustments performed by
65a0c012 130.BR adjtime (3)
22594a3c 131and NTP.
fea681da
MK
132.TP
133.B CLOCK_MONOTONIC
134Clock that cannot be set and represents monotonic time since
135some unspecified starting point.
63f0f3d9
MK
136This clock is not affected by discontinuous jumps in the system time
137(e.g., if the system administrator manually changes the clock),
138but is affected by the incremental adjustments performed by
65a0c012 139.BR adjtime (3)
63f0f3d9 140and NTP.
fea681da 141.TP
1ba3fba8
MK
142.BR CLOCK_MONOTONIC_RAW " (since Linux 2.6.28; Linux-specific)"
143.\" Added in commit 2d42244ae71d6c7b0884b5664cf2eda30fb2ae68, John Stultz
144Similar to
145.BR CLOCK_MONOTONIC ,
146but provides access to a raw hardware-based time
63f0f3d9
MK
147that is not subject to NTP adjustments or
148the incremental adjustments performed by
65a0c012 149.BR adjtime (3).
1ba3fba8 150.TP
fea681da
MK
151.B CLOCK_PROCESS_CPUTIME_ID
152High-resolution per-process timer from the CPU.
153.TP
154.B CLOCK_THREAD_CPUTIME_ID
155Thread-specific CPU-time clock.
47297adb 156.SH RETURN VALUE
e1d6264d
MK
157.BR clock_gettime (),
158.BR clock_settime ()
fea681da
MK
159and
160.BR clock_getres ()
161return 0 for success, or \-1 for failure (in which case
162.I errno
163is set appropriately).
164.SH ERRORS
165.TP
166.B EFAULT
167.I tp
168points outside the accessible address space.
169.TP
170.B EINVAL
c13182ef 171The
fea681da
MK
172.I clk_id
173specified is not supported on this system.
a113440c
MK
174.\" Linux also gives this error on attempts to set CLOCK_PROCESS_CPUTIME_ID
175.\" and CLOCK_THREAD_CPUTIME_ID, when probably the proper error should be
176.\" EPERM.
fea681da
MK
177.TP
178.B EPERM
179.BR clock_settime ()
180does not have permission to set the clock indicated.
47297adb 181.SH CONFORMING TO
2b2581ee
MK
182SUSv2, POSIX.1-2001.
183.SH AVAILABILITY
184On POSIX systems on which these functions are available, the symbol
185.B _POSIX_TIMERS
c84371c6 186is defined in \fI<unistd.h>\fP to a value greater than 0.
2b2581ee
MK
187The symbols
188.BR _POSIX_MONOTONIC_CLOCK ,
189.BR _POSIX_CPUTIME ,
190.B _POSIX_THREAD_CPUTIME
191indicate that
192.BR CLOCK_MONOTONIC ,
193.BR CLOCK_PROCESS_CPUTIME_ID ,
194.B CLOCK_THREAD_CPUTIME_ID
195are available.
196(See also
197.BR sysconf (3).)
19c98696 198.SH NOTES
19c98696 199.SS Note for SMP systems
fea681da
MK
200The
201.B CLOCK_PROCESS_CPUTIME_ID
202and
203.B CLOCK_THREAD_CPUTIME_ID
204clocks are realized on many platforms using timers from the CPUs
205(TSC on i386, AR.ITC on Itanium).
206These registers may differ between CPUs and as a consequence
207these clocks may return
208.B bogus results
209if a process is migrated to another CPU.
210.PP
211If the CPUs in an SMP system have different clock sources then
212there is no way to maintain a correlation between the timer registers since
c13182ef
MK
213each CPU will run at a slightly different frequency.
214If that is the case then
fea681da
MK
215.I clock_getcpuclockid(0)
216will return
217.B ENOENT
c13182ef
MK
218to signify this condition.
219The two clocks will then only be useful if it
fea681da
MK
220can be ensured that a process stays on a certain CPU.
221.PP
222The processors in an SMP system do not start all at exactly the same
223time and therefore the timer registers are typically running at an offset.
224Some architectures include code that attempts to limit these offsets on bootup.
225However, the code cannot guarantee to accurately tune the offsets.
226Glibc contains no provisions to deal with these offsets (unlike the Linux
c13182ef
MK
227Kernel).
228Typically these offsets are small and therefore the effects may be
fea681da 229negligible in most cases.
3847be78 230.SH BUGS
a113440c 231According to POSIX.1-2001, a process with "appropriate privileges" may set the
3847be78
MK
232.B CLOCK_PROCESS_CPUTIME_ID
233and
234.B CLOCK_THREAD_CPUTIME_ID
a113440c 235clocks using
3847be78 236.BR clock_settime ().
a113440c
MK
237On Linux, these clocks are not settable
238(i.e., no process has "appropriate privileges").
239.\" See http://bugzilla.kernel.org/show_bug.cgi?id=11972
47297adb 240.SH SEE ALSO
fea681da 241.BR date (1),
fea681da
MK
242.BR gettimeofday (2),
243.BR settimeofday (2),
244.BR time (2),
65a0c012 245.BR adjtime (3),
edf60acb 246.BR clock_getcpuclockid (3),
fea681da
MK
247.BR ctime (3),
248.BR ftime (3),
24ad017d 249.BR pthread_getcpuclockid (3),
1d7c4d16 250.BR sysconf (3),
b3682895 251.BR time (7)