Correct BSD License clause numbering from 1-2-4 to 1-2-3.
[dragonfly.git] / lib / libc / sys / gettimeofday.2
1 .\" Copyright (c) 1980, 1991, 1993
2 .\"     The Regents of the University of California.  All rights reserved.
3 .\"
4 .\" Redistribution and use in source and binary forms, with or without
5 .\" modification, are permitted provided that the following conditions
6 .\" are met:
7 .\" 1. Redistributions of source code must retain the above copyright
8 .\"    notice, this list of conditions and the following disclaimer.
9 .\" 2. Redistributions in binary form must reproduce the above copyright
10 .\"    notice, this list of conditions and the following disclaimer in the
11 .\"    documentation and/or other materials provided with the distribution.
12 .\" 3. Neither the name of the University nor the names of its contributors
13 .\"    may be used to endorse or promote products derived from this software
14 .\"    without specific prior written permission.
15 .\"
16 .\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
17 .\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 .\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 .\" ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
20 .\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 .\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 .\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 .\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 .\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 .\" SUCH DAMAGE.
27 .\"
28 .\"     @(#)gettimeofday.2      8.2 (Berkeley) 5/26/95
29 .\" $FreeBSD: src/lib/libc/sys/gettimeofday.2,v 1.9.2.9 2003/02/11 06:05:00 nsayer Exp $
30 .\" $DragonFly: src/lib/libc/sys/gettimeofday.2,v 1.5 2008/05/02 02:05:04 swildner Exp $
31 .\"
32 .Dd May 26, 1995
33 .Dt GETTIMEOFDAY 2
34 .Os
35 .Sh NAME
36 .Nm gettimeofday ,
37 .Nm settimeofday
38 .Nd get/set date and time
39 .Sh LIBRARY
40 .Lb libc
41 .Sh SYNOPSIS
42 .In sys/time.h
43 .Ft int
44 .Fn gettimeofday "struct timeval *tp" "struct timezone *tzp"
45 .Ft int
46 .Fn settimeofday "const struct timeval *tp" "const struct timezone *tzp"
47 .Sh DESCRIPTION
48 .Bf -symbolic
49 Note: timezone is no longer used; this information is kept outside
50 the kernel.
51 .Ef
52 .Pp
53 The system's notion of the current Greenwich time and the current time
54 zone is obtained with the
55 .Fn gettimeofday
56 call, and set with the
57 .Fn settimeofday
58 call.  The time is expressed in seconds and microseconds
59 since midnight (0 hour), January 1, 1970.  The resolution of the system
60 clock is hardware dependent, and the time may be updated continuously or
61 in
62 .Dq ticks .
63 If
64 .Fa tp
65 or
66 .Fa tzp
67 is NULL, the associated time
68 information will not be returned or set.
69 .Pp
70 The structures pointed to by
71 .Fa tp
72 and
73 .Fa tzp
74 are defined in
75 .In sys/time.h
76 as:
77 .Bd -literal
78 struct timeval {
79         long    tv_sec;         /* seconds since Jan. 1, 1970 */
80         long    tv_usec;        /* and microseconds */
81 };
82
83 struct timezone {
84         int     tz_minuteswest; /* minutes west of Greenwich */
85         int     tz_dsttime;     /* type of dst correction */
86 };
87 .Ed
88 .Pp
89 The
90 .Fa timezone
91 structure indicates the local time zone
92 (measured in minutes of time westward from Greenwich),
93 and a flag that, if nonzero, indicates that
94 Daylight Saving time applies locally during
95 the appropriate part of the year.
96 .Pp
97 Only the super-user may set the time of day or time zone.
98 If the system is running at securelevel \(>= 2 (see
99 .Xr init 8 ) ,
100 the time may only be advanced or retarded by a maximum of one second.
101 This limitation is imposed to prevent a malicious super-user
102 from setting arbitrary time stamps on files.
103 The system time can be adjusted backwards without restriction using the
104 .Xr adjtime 2
105 system call even when the system is secure.
106 .Sh RETURN VALUES
107 .Rv -std
108 .Sh ERRORS
109 The following error codes may be set in
110 .Va errno :
111 .Bl -tag -width Er
112 .It Bq Er EFAULT
113 An argument address referenced invalid memory.
114 .It Bq Er EPERM
115 A user other than the super-user attempted to set the time.
116 .El
117 .Sh SEE ALSO
118 .Xr date 1 ,
119 .Xr adjtime 2 ,
120 .Xr ctime 3 ,
121 .Xr clocks 7 ,
122 .Xr timed 8
123 .Sh HISTORY
124 The
125 .Fn gettimeofday
126 function call appeared in
127 .Bx 4.2 .