OSDN Git Service

e90ff61ea73a32cc83ea1b53c8782dab05dd9821
[linuxjm/LDP_man-pages.git] / original / man2 / time.2
1 .\" Copyright (c) 1992 Drew Eckhardt (drew@cs.colorado.edu), March 28, 1992
2 .\"
3 .\" %%%LICENSE_START(VERBATIM)
4 .\" Permission is granted to make and distribute verbatim copies of this
5 .\" manual provided the copyright notice and this permission notice are
6 .\" preserved on all copies.
7 .\"
8 .\" Permission is granted to copy and distribute modified versions of this
9 .\" manual under the conditions for verbatim copying, provided that the
10 .\" entire resulting derived work is distributed under the terms of a
11 .\" permission notice identical to this one.
12 .\"
13 .\" Since the Linux kernel and libraries are constantly changing, this
14 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
15 .\" responsibility for errors or omissions, or for damages resulting from
16 .\" the use of the information contained herein.  The author(s) may not
17 .\" have taken the same level of care in the production of this manual,
18 .\" which is licensed free of charge, as they might when working
19 .\" professionally.
20 .\"
21 .\" Formatted or processed versions of this manual, if unaccompanied by
22 .\" the source, must acknowledge the copyright and authors of this work.
23 .\" %%%LICENSE_END
24 .\"
25 .\" Modified by Michael Haardt <michael@moria.de>
26 .\" Modified Sat Jul 24 14:13:40 1993 by Rik Faith <faith@cs.unc.edu>
27 .\" Additions by Joseph S. Myers <jsm28@cam.ac.uk>, 970909
28 .\"
29 .TH TIME 2 2011-09-09 "Linux" "Linux Programmer's Manual"
30 .SH NAME
31 time \- get time in seconds
32 .SH SYNOPSIS
33 .B #include <time.h>
34 .sp
35 .BI "time_t time(time_t *" t );
36 .SH DESCRIPTION
37 .BR time ()
38 returns the time as the number of seconds since the
39 Epoch, 1970-01-01 00:00:00 +0000 (UTC).
40
41 If
42 .I t
43 is non-NULL,
44 the return value is also stored in the memory pointed to by
45 .IR t .
46 .SH RETURN VALUE
47 On success, the value of time in seconds since the Epoch is returned.
48 On error, \fI((time_t)\ \-1)\fP is returned, and \fIerrno\fP is set
49 appropriately.
50 .SH ERRORS
51 .TP
52 .B EFAULT
53 .I t
54 points outside your accessible address space.
55 .SH CONFORMING TO
56 SVr4, 4.3BSD, C89, C99, POSIX.1-2001.
57 .\" .br
58 .\" Under 4.3BSD, this call is obsoleted by
59 .\" .BR gettimeofday (2).
60 POSIX does not specify any error conditions.
61 .SH NOTES
62 POSIX.1 defines
63 .I seconds since the Epoch
64 using a formula that approximates the number of seconds between a
65 specified time and the Epoch.
66 This formula takes account of the facts that
67 all years that are evenly divisible by 4 are leap years,
68 but years that are evenly divisible by 100 are not leap years
69 unless they are also evenly divisible by 400,
70 in which case they are leap years.
71 This value is not the same as the actual number of seconds between the time
72 and the Epoch, because of leap seconds and because system clocks are not
73 required to be synchronized to a standard reference.
74 The intention is that the interpretation of seconds since the Epoch values be
75 consistent; see POSIX.1-2008 Rationale A.4.15 for further rationale.
76 .SH SEE ALSO
77 .BR date (1),
78 .BR gettimeofday (2),
79 .BR ctime (3),
80 .BR ftime (3),
81 .BR time (7)
82 .SH COLOPHON
83 This page is part of release 3.67 of the Linux
84 .I man-pages
85 project.
86 A description of the project,
87 information about reporting bugs,
88 and the latest version of this page,
89 can be found at
90 \%http://www.kernel.org/doc/man\-pages/.