Update.
[glibc.git] / manual / time.texi
blob852df4355b0a9dc0b9ff8f835ba46f8627d8a0a4
1 @node Date and Time, Non-Local Exits, Arithmetic, Top
2 @c %MENU% Functions for getting the date and time and formatting them nicely
3 @chapter Date and Time
5 This chapter describes functions for manipulating dates and times,
6 including functions for determining what the current time is and
7 conversion between different time representations.
9 The time functions fall into three main categories:
11 @itemize @bullet
12 @item
13 Functions for measuring elapsed CPU time are discussed in @ref{Processor
14 Time}.
16 @item
17 Functions for measuring absolute clock or calendar time are discussed in
18 @ref{Calendar Time}.
20 @item
21 Functions for setting alarms and timers are discussed in @ref{Setting
22 an Alarm}.
23 @end itemize
25 @menu
26 * Processor Time::              Measures processor time used by a program.
27 * Calendar Time::               Manipulation of ``real'' dates and times.
28 * Precision Time::              Manipulation and monitoring of high accuracy
29                                   time.
30 * Setting an Alarm::            Sending a signal after a specified time.
31 * Sleeping::                    Waiting for a period of time.
32 * Resource Usage::              Measuring various resources used.
33 * Limits on Resources::         Specifying limits on resource usage.
34 * Priority::                    Reading or setting process run priority.
35 @end menu
37 @node Processor Time
38 @section Processor Time
40 If you're trying to optimize your program or measure its efficiency, it's
41 very useful to be able to know how much @dfn{processor time} or @dfn{CPU
42 time} it has used at any given point.  Processor time is different from
43 actual wall clock time because it doesn't include any time spent waiting
44 for I/O or when some other process is running.  Processor time is
45 represented by the data type @code{clock_t}, and is given as a number of
46 @dfn{clock ticks} relative to an arbitrary base time marking the beginning
47 of a single program invocation.
48 @cindex CPU time
49 @cindex processor time
50 @cindex clock ticks
51 @cindex ticks, clock
52 @cindex time, elapsed CPU
54 @menu
55 * Basic CPU Time::              The @code{clock} function.
56 * Detailed CPU Time::           The @code{times} function.
57 @end menu
59 @node Basic CPU Time
60 @subsection Basic CPU Time Inquiry
62 To get the elapsed CPU time used by a process, you can use the
63 @code{clock} function.  This facility is declared in the header file
64 @file{time.h}.
65 @pindex time.h
67 In typical usage, you call the @code{clock} function at the beginning and
68 end of the interval you want to time, subtract the values, and then divide
69 by @code{CLOCKS_PER_SEC} (the number of clock ticks per second), like this:
71 @smallexample
72 @group
73 #include <time.h>
75 clock_t start, end;
76 double elapsed;
78 start = clock();
79 @dots{} /* @r{Do the work.} */
80 end = clock();
81 elapsed = ((double) (end - start)) / CLOCKS_PER_SEC;
82 @end group
83 @end smallexample
85 Different computers and operating systems vary wildly in how they keep
86 track of processor time.  It's common for the internal processor clock
87 to have a resolution somewhere between hundredth and millionth of a
88 second.
90 In the GNU system, @code{clock_t} is equivalent to @code{long int} and
91 @code{CLOCKS_PER_SEC} is an integer value.  But in other systems, both
92 @code{clock_t} and the type of the macro @code{CLOCKS_PER_SEC} can be
93 either integer or floating-point types.  Casting processor time values
94 to @code{double}, as in the example above, makes sure that operations
95 such as arithmetic and printing work properly and consistently no matter
96 what the underlying representation is.
98 Note that the clock can wrap around.  On a 32bit system with
99 @code{CLOCKS_PER_SEC} set to one million a wrap around happens after
100 around 36 minutes.
102 @comment time.h
103 @comment ISO
104 @deftypevr Macro int CLOCKS_PER_SEC
105 The value of this macro is the number of clock ticks per second measured
106 by the @code{clock} function.  POSIX requires that this value is one
107 million independent of the actual resolution.
108 @end deftypevr
110 @comment time.h
111 @comment POSIX.1
112 @deftypevr Macro int CLK_TCK
113 This is an obsolete name for @code{CLOCKS_PER_SEC}.
114 @end deftypevr
116 @comment time.h
117 @comment ISO
118 @deftp {Data Type} clock_t
119 This is the type of the value returned by the @code{clock} function.
120 Values of type @code{clock_t} are in units of clock ticks.
121 @end deftp
123 @comment time.h
124 @comment ISO
125 @deftypefun clock_t clock (void)
126 This function returns the elapsed processor time.  The base time is
127 arbitrary but doesn't change within a single process.  If the processor
128 time is not available or cannot be represented, @code{clock} returns the
129 value @code{(clock_t)(-1)}.
130 @end deftypefun
133 @node Detailed CPU Time
134 @subsection Detailed Elapsed CPU Time Inquiry
136 The @code{times} function returns more detailed information about
137 elapsed processor time in a @w{@code{struct tms}} object.  You should
138 include the header file @file{sys/times.h} to use this facility.
139 @pindex sys/times.h
141 @comment sys/times.h
142 @comment POSIX.1
143 @deftp {Data Type} {struct tms}
144 The @code{tms} structure is used to return information about process
145 times.  It contains at least the following members:
147 @table @code
148 @item clock_t tms_utime
149 This is the CPU time used in executing the instructions of the calling
150 process.
152 @item clock_t tms_stime
153 This is the CPU time used by the system on behalf of the calling process.
155 @item clock_t tms_cutime
156 This is the sum of the @code{tms_utime} values and the @code{tms_cutime}
157 values of all terminated child processes of the calling process, whose
158 status has been reported to the parent process by @code{wait} or
159 @code{waitpid}; see @ref{Process Completion}.  In other words, it
160 represents the total CPU time used in executing the instructions of all
161 the terminated child processes of the calling process, excluding child
162 processes which have not yet been reported by @code{wait} or
163 @code{waitpid}.
165 @item clock_t tms_cstime
166 This is similar to @code{tms_cutime}, but represents the total CPU time
167 used by the system on behalf of all the terminated child processes of the
168 calling process.
169 @end table
171 All of the times are given in clock ticks.  These are absolute values; in a
172 newly created process, they are all zero.  @xref{Creating a Process}.
173 @end deftp
175 @comment sys/times.h
176 @comment POSIX.1
177 @deftypefun clock_t times (struct tms *@var{buffer})
178 The @code{times} function stores the processor time information for
179 the calling process in @var{buffer}.
181 The return value is the same as the value of @code{clock()}: the elapsed
182 real time relative to an arbitrary base.  The base is a constant within a
183 particular process, and typically represents the time since system
184 start-up.  A value of @code{(clock_t)(-1)} is returned to indicate failure.
185 @end deftypefun
187 @strong{Portability Note:} The @code{clock} function described in
188 @ref{Basic CPU Time}, is specified by the @w{ISO C} standard.  The
189 @code{times} function is a feature of POSIX.1.  In the GNU system, the
190 value returned by the @code{clock} function is equivalent to the sum of
191 the @code{tms_utime} and @code{tms_stime} fields returned by
192 @code{times}.
194 @node Calendar Time
195 @section Calendar Time
197 This section describes facilities for keeping track of dates and times
198 according to the Gregorian calendar.
199 @cindex Gregorian calendar
200 @cindex time, calendar
201 @cindex date and time
203 There are three representations for date and time information:
205 @itemize @bullet
206 @item
207 @dfn{Calendar time} (the @code{time_t} data type) is a compact
208 representation, typically giving the number of seconds elapsed since
209 some implementation-specific base time.
210 @cindex calendar time
212 @item
213 There is also a @dfn{high-resolution time} representation (the @code{struct
214 timeval} data type) that includes fractions of a second.  Use this time
215 representation instead of ordinary calendar time when you need greater
216 precision.
217 @cindex high-resolution time
219 @item
220 @dfn{Local time} or @dfn{broken-down time} (the @code{struct
221 tm} data type) represents the date and time as a set of components
222 specifying the year, month, and so on, for a specific time zone.
223 This time representation is usually used in conjunction with formatting
224 date and time values.
225 @cindex local time
226 @cindex broken-down time
227 @end itemize
229 @menu
230 * Simple Calendar Time::        Facilities for manipulating calendar time.
231 * High-Resolution Calendar::    A time representation with greater precision.
232 * Broken-down Time::            Facilities for manipulating local time.
233 * Formatting Date and Time::    Converting times to strings.
234 * Parsing Date and Time::       Convert textual time and date information back
235                                  into broken-down time values.
236 * TZ Variable::                 How users specify the time zone.
237 * Time Zone Functions::         Functions to examine or specify the time zone.
238 * Time Functions Example::      An example program showing use of some of
239                                  the time functions.
240 @end menu
242 @node Simple Calendar Time
243 @subsection Simple Calendar Time
245 This section describes the @code{time_t} data type for representing
246 calendar time, and the functions which operate on calendar time objects.
247 These facilities are declared in the header file @file{time.h}.
248 @pindex time.h
250 @cindex epoch
251 @comment time.h
252 @comment ISO
253 @deftp {Data Type} time_t
254 This is the data type used to represent calendar time.
255 When interpreted as an absolute time
256 value, it represents the number of seconds elapsed since 00:00:00 on
257 January 1, 1970, Coordinated Universal Time.  (This date is sometimes
258 referred to as the @dfn{epoch}.)  POSIX requires that this count
259 ignore leap seconds, but on some hosts this count includes leap seconds
260 if you set @code{TZ} to certain values (@pxref{TZ Variable}).
262 In the GNU C library, @code{time_t} is equivalent to @code{long int}.
263 In other systems, @code{time_t} might be either an integer or
264 floating-point type.
265 @end deftp
267 @comment time.h
268 @comment ISO
269 @deftypefun double difftime (time_t @var{time1}, time_t @var{time0})
270 The @code{difftime} function returns the number of seconds elapsed
271 between time @var{time1} and time @var{time0}, as a value of type
272 @code{double}.  The difference ignores leap seconds unless leap
273 second support is enabled.
275 In the GNU system, you can simply subtract @code{time_t} values.  But on
276 other systems, the @code{time_t} data type might use some other encoding
277 where subtraction doesn't work directly.
278 @end deftypefun
280 @comment time.h
281 @comment ISO
282 @deftypefun time_t time (time_t *@var{result})
283 The @code{time} function returns the current time as a value of type
284 @code{time_t}.  If the argument @var{result} is not a null pointer, the
285 time value is also stored in @code{*@var{result}}.  If the calendar
286 time is not available, the value @w{@code{(time_t)(-1)}} is returned.
287 @end deftypefun
290 @node High-Resolution Calendar
291 @subsection High-Resolution Calendar
293 The @code{time_t} data type used to represent calendar times has a
294 resolution of only one second.  Some applications need more precision.
296 So, the GNU C library also contains functions which are capable of
297 representing calendar times to a higher resolution than one second.  The
298 functions and the associated data types described in this section are
299 declared in @file{sys/time.h}.
300 @pindex sys/time.h
302 @comment sys/time.h
303 @comment BSD
304 @deftp {Data Type} {struct timeval}
305 The @code{struct timeval} structure represents a calendar time.  It
306 has the following members:
308 @table @code
309 @item long int tv_sec
310 This represents the number of seconds since the epoch.  It is equivalent
311 to a normal @code{time_t} value.
313 @item long int tv_usec
314 This is the fractional second value, represented as the number of
315 microseconds.
317 Some times struct timeval values are used for time intervals.  Then the
318 @code{tv_sec} member is the number of seconds in the interval, and
319 @code{tv_usec} is the number of additional microseconds.
320 @end table
321 @end deftp
323 @comment sys/time.h
324 @comment BSD
325 @deftp {Data Type} {struct timezone}
326 The @code{struct timezone} structure is used to hold minimal information
327 about the local time zone.  It has the following members:
329 @table @code
330 @item int tz_minuteswest
331 This is the number of minutes west of UTC.
333 @item int tz_dsttime
334 If nonzero, daylight saving time applies during some part of the year.
335 @end table
337 The @code{struct timezone} type is obsolete and should never be used.
338 Instead, use the facilities described in @ref{Time Zone Functions}.
339 @end deftp
341 It is often necessary to subtract two values of type @w{@code{struct
342 timeval}}.  Here is the best way to do this.  It works even on some
343 peculiar operating systems where the @code{tv_sec} member has an
344 unsigned type.
346 @smallexample
347 /* @r{Subtract the `struct timeval' values X and Y,}
348    @r{storing the result in RESULT.}
349    @r{Return 1 if the difference is negative, otherwise 0.}  */
352 timeval_subtract (result, x, y)
353      struct timeval *result, *x, *y;
355   /* @r{Perform the carry for the later subtraction by updating @var{y}.} */
356   if (x->tv_usec < y->tv_usec) @{
357     int nsec = (y->tv_usec - x->tv_usec) / 1000000 + 1;
358     y->tv_usec -= 1000000 * nsec;
359     y->tv_sec += nsec;
360   @}
361   if (x->tv_usec - y->tv_usec > 1000000) @{
362     int nsec = (x->tv_usec - y->tv_usec) / 1000000;
363     y->tv_usec += 1000000 * nsec;
364     y->tv_sec -= nsec;
365   @}
367   /* @r{Compute the time remaining to wait.}
368      @r{@code{tv_usec} is certainly positive.} */
369   result->tv_sec = x->tv_sec - y->tv_sec;
370   result->tv_usec = x->tv_usec - y->tv_usec;
372   /* @r{Return 1 if result is negative.} */
373   return x->tv_sec < y->tv_sec;
375 @end smallexample
377 @comment sys/time.h
378 @comment BSD
379 @deftypefun int gettimeofday (struct timeval *@var{tp}, struct timezone *@var{tzp})
380 The @code{gettimeofday} function returns the current date and time in the
381 @code{struct timeval} structure indicated by @var{tp}.  Information about the
382 time zone is returned in the structure pointed at @var{tzp}.  If the @var{tzp}
383 argument is a null pointer, time zone information is ignored.
385 The return value is @code{0} on success and @code{-1} on failure.  The
386 following @code{errno} error condition is defined for this function:
388 @table @code
389 @item ENOSYS
390 The operating system does not support getting time zone information, and
391 @var{tzp} is not a null pointer.  The GNU operating system does not
392 support using @w{@code{struct timezone}} to represent time zone
393 information; that is an obsolete feature of 4.3 BSD.
394 Instead, use the facilities described in @ref{Time Zone Functions}.
395 @end table
396 @end deftypefun
398 @comment sys/time.h
399 @comment BSD
400 @deftypefun int settimeofday (const struct timeval *@var{tp}, const struct timezone *@var{tzp})
401 The @code{settimeofday} function sets the current date and time
402 according to the arguments.  As for @code{gettimeofday}, time zone
403 information is ignored if @var{tzp} is a null pointer.
405 You must be a privileged user in order to use @code{settimeofday}.
407 The return value is @code{0} on success and @code{-1} on failure.  The
408 following @code{errno} error conditions are defined for this function:
410 @table @code
411 @item EPERM
412 This process cannot set the time because it is not privileged.
414 @item ENOSYS
415 The operating system does not support setting time zone information, and
416 @var{tzp} is not a null pointer.
417 @end table
418 @end deftypefun
420 @comment sys/time.h
421 @comment BSD
422 @deftypefun int adjtime (const struct timeval *@var{delta}, struct timeval *@var{olddelta})
423 This function speeds up or slows down the system clock in order to make
424 gradual adjustments in the current time.  This ensures that the time
425 reported by the system clock is always monotonically increasing, which
426 might not happen if you simply set the current time.
428 The @var{delta} argument specifies a relative adjustment to be made to
429 the current time.  If negative, the system clock is slowed down for a
430 while until it has lost this much time.  If positive, the system clock
431 is speeded up for a while.
433 If the @var{olddelta} argument is not a null pointer, the @code{adjtime}
434 function returns information about any previous time adjustment that
435 has not yet completed.
437 This function is typically used to synchronize the clocks of computers
438 in a local network.  You must be a privileged user to use it.
439 The return value is @code{0} on success and @code{-1} on failure.  The
440 following @code{errno} error condition is defined for this function:
442 @table @code
443 @item EPERM
444 You do not have privilege to set the time.
445 @end table
446 @end deftypefun
448 @strong{Portability Note:}  The @code{gettimeofday}, @code{settimeofday},
449 and @code{adjtime} functions are derived from BSD.
452 @node Broken-down Time
453 @subsection Broken-down Time
454 @cindex broken-down time
455 @cindex calendar time and broken-down time
457 Calendar time is represented as a number of seconds.  This is convenient
458 for calculation, but has no resemblance to the way people normally
459 represent dates and times.  By contrast, @dfn{broken-down time} is a binary
460 representation separated into year, month, day, and so on.  Broken down
461 time values are not useful for calculations, but they are useful for
462 printing human readable time.
464 A broken-down time value is always relative to a choice of local time
465 zone, and it also indicates which time zone was used.
467 The symbols in this section are declared in the header file @file{time.h}.
469 @comment time.h
470 @comment ISO
471 @deftp {Data Type} {struct tm}
472 This is the data type used to represent a broken-down time.  The structure
473 contains at least the following members, which can appear in any order:
475 @table @code
476 @item int tm_sec
477 This is the number of seconds after the minute, normally in the range
478 @code{0} through @code{59}.  (The actual upper limit is @code{60}, to allow
479 for leap seconds if leap second support is available.)
480 @cindex leap second
482 @item int tm_min
483 This is the number of minutes after the hour, in the range @code{0} through
484 @code{59}.
486 @item int tm_hour
487 This is the number of hours past midnight, in the range @code{0} through
488 @code{23}.
490 @item int tm_mday
491 This is the day of the month, in the range @code{1} through @code{31}.
493 @item int tm_mon
494 This is the number of months since January, in the range @code{0} through
495 @code{11}.
497 @item int tm_year
498 This is the number of years since @code{1900}.
500 @item int tm_wday
501 This is the number of days since Sunday, in the range @code{0} through
502 @code{6}.
504 @item int tm_yday
505 This is the number of days since January 1, in the range @code{0} through
506 @code{365}.
508 @item int tm_isdst
509 @cindex Daylight Saving Time
510 @cindex summer time
511 This is a flag that indicates whether Daylight Saving Time is (or was, or
512 will be) in effect at the time described.  The value is positive if
513 Daylight Saving Time is in effect, zero if it is not, and negative if the
514 information is not available.
516 @item long int tm_gmtoff
517 This field describes the time zone that was used to compute this
518 broken-down time value, including any adjustment for daylight saving; it
519 is the number of seconds that you must add to UTC to get local time.
520 You can also think of this as the number of seconds east of UTC.  For
521 example, for U.S. Eastern Standard Time, the value is @code{-5*60*60}.
522 The @code{tm_gmtoff} field is derived from BSD and is a GNU library
523 extension; it is not visible in a strict @w{ISO C} environment.
525 @item const char *tm_zone
526 This field is the name for the time zone that was used to compute this
527 broken-down time value.  Like @code{tm_gmtoff}, this field is a BSD and
528 GNU extension, and is not visible in a strict @w{ISO C} environment.
529 @end table
530 @end deftp
532 @comment time.h
533 @comment ISO
534 @deftypefun {struct tm *} localtime (const time_t *@var{time})
535 The @code{localtime} function converts the calendar time pointed to by
536 @var{time} to broken-down time representation, expressed relative to the
537 user's specified time zone.
539 The return value is a pointer to a static broken-down time structure, which
540 might be overwritten by subsequent calls to @code{ctime}, @code{gmtime},
541 or @code{localtime}.  (But no other library function overwrites the contents
542 of this object.)
544 The return value is the null pointer if @var{time} cannot be represented
545 as a broken-down time; typically this is because the year cannot fit into
546 an @code{int}.
548 Calling @code{localtime} has one other effect: it sets the variable
549 @code{tzname} with information about the current time zone.  @xref{Time
550 Zone Functions}.
551 @end deftypefun
553 Using the @code{localtime} function is a big problem in multi-threaded
554 programs.  The result is returned in a static buffer and this is used in
555 all threads.  POSIX.1c introduced a varient of this function.
557 @comment time.h
558 @comment POSIX.1c
559 @deftypefun {struct tm *} localtime_r (const time_t *@var{time}, struct tm *@var{resultp})
560 The @code{localtime_r} function works just like the @code{localtime}
561 function.  It takes a pointer to a variable containing the calendar time
562 and converts it to the broken-down time format.
564 But the result is not placed in a static buffer.  Instead it is placed
565 in the object of type @code{struct tm} to which the parameter
566 @var{resultp} points.
568 If the conversion is successful the function returns a pointer to the
569 object the result was written into, i.e., it returns @var{resultp}.
570 @end deftypefun
573 @comment time.h
574 @comment ISO
575 @deftypefun {struct tm *} gmtime (const time_t *@var{time})
576 This function is similar to @code{localtime}, except that the broken-down
577 time is expressed as Coordinated Universal Time (UTC)---that is, as
578 Greenwich Mean Time (GMT)---rather than relative to the local time zone.
580 Recall that calendar times are @emph{always} expressed in coordinated
581 universal time.
582 @end deftypefun
584 As for the @code{localtime} function we have the problem that the result
585 is placed in a static variable.  POSIX.1c also provides a replacement for
586 @code{gmtime}.
588 @comment time.h
589 @comment POSIX.1c
590 @deftypefun {struct tm *} gmtime_r (const time_t *@var{time}, struct tm *@var{resultp})
591 This function is similar to @code{localtime_r}, except that it converts
592 just like @code{gmtime} the given time as Coordinated Universal Time.
594 If the conversion is successful the function returns a pointer to the
595 object the result was written into, i.e., it returns @var{resultp}.
596 @end deftypefun
599 @comment time.h
600 @comment ISO
601 @deftypefun time_t mktime (struct tm *@var{brokentime})
602 The @code{mktime} function is used to convert a broken-down time structure
603 to a calendar time representation.  It also ``normalizes'' the contents of
604 the broken-down time structure, by filling in the day of week and day of
605 year based on the other date and time components.
607 The @code{mktime} function ignores the specified contents of the
608 @code{tm_wday} and @code{tm_yday} members of the broken-down time
609 structure.  It uses the values of the other components to compute the
610 calendar time; it's permissible for these components to have
611 unnormalized values outside of their normal ranges.  The last thing that
612 @code{mktime} does is adjust the components of the @var{brokentime}
613 structure (including the @code{tm_wday} and @code{tm_yday}).
615 If the specified broken-down time cannot be represented as a calendar time,
616 @code{mktime} returns a value of @code{(time_t)(-1)} and does not modify
617 the contents of @var{brokentime}.
619 Calling @code{mktime} also sets the variable @code{tzname} with
620 information about the current time zone.  @xref{Time Zone Functions}.
621 @end deftypefun
623 @node Formatting Date and Time
624 @subsection Formatting Date and Time
626 The functions described in this section format time values as strings.
627 These functions are declared in the header file @file{time.h}.
628 @pindex time.h
630 @comment time.h
631 @comment ISO
632 @deftypefun {char *} asctime (const struct tm *@var{brokentime})
633 The @code{asctime} function converts the broken-down time value that
634 @var{brokentime} points to into a string in a standard format:
636 @smallexample
637 "Tue May 21 13:46:22 1991\n"
638 @end smallexample
640 The abbreviations for the days of week are: @samp{Sun}, @samp{Mon},
641 @samp{Tue}, @samp{Wed}, @samp{Thu}, @samp{Fri}, and @samp{Sat}.
643 The abbreviations for the months are: @samp{Jan}, @samp{Feb},
644 @samp{Mar}, @samp{Apr}, @samp{May}, @samp{Jun}, @samp{Jul}, @samp{Aug},
645 @samp{Sep}, @samp{Oct}, @samp{Nov}, and @samp{Dec}.
647 The return value points to a statically allocated string, which might be
648 overwritten by subsequent calls to @code{asctime} or @code{ctime}.
649 (But no other library function overwrites the contents of this
650 string.)
651 @end deftypefun
653 @comment time.h
654 @comment POSIX.1c
655 @deftypefun {char *} asctime_r (const struct tm *@var{brokentime}, char *@var{buffer})
656 This function is similar to @code{asctime} but instead of placing the
657 result in a static buffer it writes the string in the buffer pointed to
658 by the parameter @var{buffer}.  This buffer should have at least room
659 for 16 bytes.
661 If no error occurred the function returns a pointer to the string the
662 result was written into, i.e., it returns @var{buffer}.  Otherwise
663 return @code{NULL}.
664 @end deftypefun
667 @comment time.h
668 @comment ISO
669 @deftypefun {char *} ctime (const time_t *@var{time})
670 The @code{ctime} function is similar to @code{asctime}, except that the
671 time value is specified as a @code{time_t} calendar time value rather
672 than in broken-down local time format.  It is equivalent to
674 @smallexample
675 asctime (localtime (@var{time}))
676 @end smallexample
678 @code{ctime} sets the variable @code{tzname}, because @code{localtime}
679 does so.  @xref{Time Zone Functions}.
680 @end deftypefun
682 @comment time.h
683 @comment POSIX.1c
684 @deftypefun {char *} ctime_r (const time_t *@var{time}, char *@var{buffer})
685 This function is similar to @code{ctime}, only that it places the result
686 in the string pointed to by @var{buffer}.  It is equivalent to (written
687 using gcc extensions, @pxref{Statement Exprs,,,gcc,Porting and Using gcc}):
689 @smallexample
690 (@{ struct tm tm; asctime_r (localtime_r (time, &tm), buf); @})
691 @end smallexample
693 If no error occurred the function returns a pointer to the string the
694 result was written into, i.e., it returns @var{buffer}.  Otherwise
695 return @code{NULL}.
696 @end deftypefun
699 @comment time.h
700 @comment ISO
701 @deftypefun size_t strftime (char *@var{s}, size_t @var{size}, const char *@var{template}, const struct tm *@var{brokentime})
702 This function is similar to the @code{sprintf} function (@pxref{Formatted
703 Input}), but the conversion specifications that can appear in the format
704 template @var{template} are specialized for printing components of the date
705 and time @var{brokentime} according to the locale currently specified for
706 time conversion (@pxref{Locales}).
708 Ordinary characters appearing in the @var{template} are copied to the
709 output string @var{s}; this can include multibyte character sequences.
710 Conversion specifiers are introduced by a @samp{%} character, followed
711 by an optional flag which can be one of the following.  These flags
712 are all GNU extensions. The first three affect only the output of
713 numbers:
715 @table @code
716 @item _
717 The number is padded with spaces.
719 @item -
720 The number is not padded at all.
722 @item 0
723 The number is padded with zeros even if the format specifies padding
724 with spaces.
726 @item ^
727 The output uses uppercase characters, but only if this is possible
728 (@pxref{Case Conversion}).
729 @end table
731 The default action is to pad the number with zeros to keep it a constant
732 width.  Numbers that do not have a range indicated below are never
733 padded, since there is no natural width for them.
735 Following the flag an optional specification of the width is possible.
736 This is specified in decimal notation.  If the natural size of the
737 output is of the field has less than the specified number of characters,
738 the result is written right adjusted and space padded to the given
739 size.
741 An optional modifier can follow the optional flag and width
742 specification.  The modifiers, which are POSIX.2 extensions, are:
744 @table @code
745 @item E
746 Use the locale's alternate representation for date and time.  This
747 modifier applies to the @code{%c}, @code{%C}, @code{%x}, @code{%X},
748 @code{%y} and @code{%Y} format specifiers.  In a Japanese locale, for
749 example, @code{%Ex} might yield a date format based on the Japanese
750 Emperors' reigns.
752 @item O
753 Use the locale's alternate numeric symbols for numbers.  This modifier
754 applies only to numeric format specifiers.
755 @end table
757 If the format supports the modifier but no alternate representation
758 is available, it is ignored.
760 The conversion specifier ends with a format specifier taken from the
761 following list.  The whole @samp{%} sequence is replaced in the output
762 string as follows:
764 @table @code
765 @item %a
766 The abbreviated weekday name according to the current locale.
768 @item %A
769 The full weekday name according to the current locale.
771 @item %b
772 The abbreviated month name according to the current locale.
774 @item %B
775 The full month name according to the current locale.
777 @item %c
778 The preferred date and time representation for the current locale.
780 @item %C
781 The century of the year.  This is equivalent to the greatest integer not
782 greater than the year divided by 100.
784 This format is a POSIX.2 extension.
786 @item %d
787 The day of the month as a decimal number (range @code{01} through @code{31}).
789 @item %D
790 The date using the format @code{%m/%d/%y}.
792 This format is a POSIX.2 extension.
794 @item %e
795 The day of the month like with @code{%d}, but padded with blank (range
796 @code{ 1} through @code{31}).
798 This format is a POSIX.2 extension.
800 @item %F
801 The date using the format @code{%Y-%m-%d}.  This is the form specified
802 in the @w{ISO 8601} standard and is the preferred form for all uses.
804 This format is a @w{ISO C 9X} extension.
806 @item %g
807 The year corresponding to the ISO week number, but without the century
808 (range @code{00} through @code{99}).  This has the same format and value
809 as @code{%y}, except that if the ISO week number (see @code{%V}) belongs
810 to the previous or next year, that year is used instead.
812 This format is a GNU extension.
814 @item %G
815 The year corresponding to the ISO week number.  This has the same format
816 and value as @code{%Y}, except that if the ISO week number (see
817 @code{%V}) belongs to the previous or next year, that year is used
818 instead.
820 This format is a GNU extension.
822 @item %h
823 The abbreviated month name according to the current locale.  The action
824 is the same as for @code{%b}.
826 This format is a POSIX.2 extension.
828 @item %H
829 The hour as a decimal number, using a 24-hour clock (range @code{00} through
830 @code{23}).
832 @item %I
833 The hour as a decimal number, using a 12-hour clock (range @code{01} through
834 @code{12}).
836 @item %j
837 The day of the year as a decimal number (range @code{001} through @code{366}).
839 @item %k
840 The hour as a decimal number, using a 24-hour clock like @code{%H}, but
841 padded with blank (range @code{ 0} through @code{23}).
843 This format is a GNU extension.
845 @item %l
846 The hour as a decimal number, using a 12-hour clock like @code{%I}, but
847 padded with blank (range @code{ 1} through @code{12}).
849 This format is a GNU extension.
851 @item %m
852 The month as a decimal number (range @code{01} through @code{12}).
854 @item %M
855 The minute as a decimal number (range @code{00} through @code{59}).
857 @item %n
858 A single @samp{\n} (newline) character.
860 This format is a POSIX.2 extension.
862 @item %p
863 Either @samp{AM} or @samp{PM}, according to the given time value; or the
864 corresponding strings for the current locale.  Noon is treated as
865 @samp{PM} and midnight as @samp{AM}.
867 @ignore
868 We currently have a problem with makeinfo.  Write @samp{AM} and @samp{am}
869 both results in `am'.  I.e., the difference in case is not visible anymore.
870 @end ignore
871 @item %P
872 Either @samp{am} or @samp{pm}, according to the given time value; or the
873 corresponding strings for the current locale, printed in lowercase
874 characters.  Noon is treated as @samp{pm} and midnight as @samp{am}.
876 This format is a GNU extension.
878 @item %r
879 The complete time using the AM/PM format of the current locale.
881 This format is a POSIX.2 extension.
883 @item %R
884 The hour and minute in decimal numbers using the format @code{%H:%M}.
886 This format is a GNU extension.
888 @item %s
889 The number of seconds since the epoch, i.e., since 1970-01-01 00:00:00 UTC.
890 Leap seconds are not counted unless leap second support is available.
892 This format is a GNU extension.
894 @item %S
895 The seconds as a decimal number (range @code{00} through @code{60}).
897 @item %t
898 A single @samp{\t} (tabulator) character.
900 This format is a POSIX.2 extension.
902 @item %T
903 The time using decimal numbers using the format @code{%H:%M:%S}.
905 This format is a POSIX.2 extension.
907 @item %u
908 The day of the week as a decimal number (range @code{1} through
909 @code{7}), Monday being @code{1}.
911 This format is a POSIX.2 extension.
913 @item %U
914 The week number of the current year as a decimal number (range @code{00}
915 through @code{53}), starting with the first Sunday as the first day of
916 the first week.  Days preceding the first Sunday in the year are
917 considered to be in week @code{00}.
919 @item %V
920 The @w{ISO 8601:1988} week number as a decimal number (range @code{01}
921 through @code{53}).  ISO weeks start with Monday and end with Sunday.
922 Week @code{01} of a year is the first week which has the majority of its
923 days in that year; this is equivalent to the week containing the year's
924 first Thursday, and it is also equivalent to the week containing January
925 4.  Week @code{01} of a year can contain days from the previous year.
926 The week before week @code{01} of a year is the last week (@code{52} or
927 @code{53}) of the previous year even if it contains days from the new
928 year.
930 This format is a POSIX.2 extension.
932 @item %w
933 The day of the week as a decimal number (range @code{0} through
934 @code{6}), Sunday being @code{0}.
936 @item %W
937 The week number of the current year as a decimal number (range @code{00}
938 through @code{53}), starting with the first Monday as the first day of
939 the first week.  All days preceding the first Monday in the year are
940 considered to be in week @code{00}.
942 @item %x
943 The preferred date representation for the current locale, but without the
944 time.
946 @item %X
947 The preferred time representation for the current locale, but with no date.
949 @item %y
950 The year without a century as a decimal number (range @code{00} through
951 @code{99}).  This is equivalent to the year modulo 100.
953 @item %Y
954 The year as a decimal number, using the Gregorian calendar.  Years
955 before the year @code{1} are numbered @code{0}, @code{-1}, and so on.
957 @item %z
958 @w{RFC 822}/@w{ISO 8601:1988} style numeric time zone (e.g.,
959 @code{-0600} or @code{+0100}), or nothing if no time zone is
960 determinable.
962 This format is a GNU extension.
964 A full @w{RFC 822} timestamp is generated by the format
965 @w{@samp{"%a, %d %b %Y %H:%M:%S %z"}} (or the equivalent
966 @w{@samp{"%a, %d %b %Y %T %z"}}).
968 @item %Z
969 The time zone abbreviation (empty if the time zone can't be determined).
971 @item %%
972 A literal @samp{%} character.
973 @end table
975 The @var{size} parameter can be used to specify the maximum number of
976 characters to be stored in the array @var{s}, including the terminating
977 null character.  If the formatted time requires more than @var{size}
978 characters, @code{strftime} returns zero and the content of the array
979 @var{s} is indetermined.  Otherwise the return value indicates the
980 number of characters placed in the array @var{s}, not including the
981 terminating null character.
983 @emph{Warning:} This convention for the return value which is prescribed
984 in @w{ISO C} can lead to problems in some situations.  For certain
985 format strings and certain locales the output really can be the empty
986 string and this cannot be discovered by testing the return value only.
987 E.g., in most locales the AM/PM time format is not supported (most of
988 the world uses the 24 hour time representation).  In such locales
989 @code{"%p"} will return the empty string, i.e., the return value is
990 zero.  To detect situations like this something similar to the following
991 code should be used:
993 @smallexample
994 buf[0] = '\1';
995 len = strftime (buf, bufsize, format, tp);
996 if (len == 0 && buf[0] != '\0')
997   @{
998     /* Something went wrong in the strftime call.  */
999     @dots{}
1000   @}
1001 @end smallexample
1003 If @var{s} is a null pointer, @code{strftime} does not actually write
1004 anything, but instead returns the number of characters it would have written.
1006 According to POSIX.1 every call to @code{strftime} implies a call to
1007 @code{tzset}.  So the contents of the environment variable @code{TZ}
1008 is examined before any output is produced.
1010 For an example of @code{strftime}, see @ref{Time Functions Example}.
1011 @end deftypefun
1013 @comment time.h
1014 @comment ISO/Amend1
1015 @deftypefun size_t wcsftime (wchar_t *@var{s}, size_t @var{size}, const wchar_t *@var{template}, const struct tm *@var{brokentime})
1016 The @code{wcsftime} function is equivalent to the @code{strftime}
1017 function with the difference that it operates one wide character
1018 strings.  The buffer where the result is stored, pointed to by @var{s},
1019 must be an array of wide characters.  The parameter @var{size} which
1020 specifies the size of the output buffer gives the number of wide
1021 character, not the number of bytes.
1023 Also the format string @var{template} is a wide character string.  Since
1024 all characters needed to specify the format string are in the basic
1025 characater set it is portably possible to write format strings in the C
1026 source code using the @code{L"..."} notation.  The parameter
1027 @var{brokentime} has the same meaning as in the @code{strftime} call.
1029 The @code{wcsftime} function supports the same flags, modifiers, and
1030 format specifiers as the @code{strftime} function.
1032 The return value of @code{wcsftime} is the number of wide characters
1033 stored in @code{s}.  When more characters would have to be written than
1034 can be placed in the buffer @var{s} the return value is zero, with the
1035 same problems indicated in the @code{strftime} documentation.
1036 @end deftypefun
1038 @node Parsing Date and Time
1039 @subsection Convert textual time and date information back
1041 The @w{ISO C} standard does not specify any functions which can convert
1042 the output of the @code{strftime} function back into a binary format.
1043 This lead to variety of more or less successful implementations with
1044 different interfaces over the years.  Then the Unix standard got
1045 extended by two functions: @code{strptime} and @code{getdate}.  Both
1046 have kind of strange interfaces but at least they are widely available.
1048 @menu
1049 * Low-Level Time String Parsing::  Interpret string according to given format.
1050 * General Time String Parsing::    User-friendly function to parse data and
1051                                     time strings.
1052 @end menu
1054 @node Low-Level Time String Parsing
1055 @subsubsection Interpret string according to given format
1057 The first function is a rather low-level interface.  It is nevertheless
1058 frequently used in user programs since it is better known.  Its
1059 implementation and the interface though is heavily influenced by the
1060 @code{getdate} function which is defined and implemented in terms of
1061 calls to @code{strptime}.
1063 @comment time.h
1064 @comment XPG4
1065 @deftypefun {char *} strptime (const char *@var{s}, const char *@var{fmt}, struct tm *@var{tp})
1066 The @code{strptime} function parses the input string @var{s} according
1067 to the format string @var{fmt} and stores the found values in the
1068 structure @var{tp}.
1070 The input string can be retrieved in any way.  It does not matter
1071 whether it was generated by a @code{strftime} call or made up directly
1072 by a program.  It is also not necessary that the content is in any
1073 human-recognizable format.  I.e., it is OK if a date is written like
1074 @code{"02:1999:9"} which is not understandable without context.  As long
1075 the format string @var{fmt} matches the format of the input string
1076 everything goes.
1078 The format string consists of the same components as the format string
1079 for the @code{strftime} function.  The only difference is that the flags
1080 @code{_}, @code{-}, @code{0}, and @code{^} are not allowed.
1081 @comment Is this really the intention?  --drepper
1082 Several of the formats which @code{strftime} handled differently do the
1083 same work in @code{strptime} since differences like case of the output
1084 do not matter.  For symmetry reasons all formats are supported, though.
1086 The modifiers @code{E} and @code{O} are also allowed everywhere the
1087 @code{strftime} function allows them.
1089 The formats are:
1091 @table @code
1092 @item %a
1093 @itemx %A
1094 The weekday name according to the current locale, in abbreviated form or
1095 the full name.
1097 @item %b
1098 @itemx %B
1099 @itemx %h
1100 The month name according to the current locale, in abbreviated form or
1101 the full name.
1103 @item %c
1104 The date and time representation for the current locale.
1106 @item %Ec
1107 Like @code{%c} but the locale's alternative date and time format is used.
1109 @item %C
1110 The century of the year.
1112 It makes sense to use this format only if the format string also
1113 contains the @code{%y} format.
1115 @item %EC
1116 The locale's representation of the period.
1118 Unlike @code{%C} it makes sometimes sense to use this format since in
1119 some cultures it is required to specify years relative to periods
1120 instead of using the Gregorian years.
1122 @item %d
1123 @item %e
1124 The day of the month as a decimal number (range @code{1} through @code{31}).
1125 Leading zeroes are permitted but not required.
1127 @item %Od
1128 @itemx %Oe
1129 Same as @code{%d} but the locale's alternative numeric symbols are used.
1131 Leading zeroes are permitted but not required.
1133 @item %D
1134 Equivalent to the use of @code{%m/%d/%y} in this place.
1136 @item %F
1137 Equivalent to the use of @code{%Y-%m-%d} which is the @w{ISO 8601} date
1138 format.
1140 This is a GNU extension following an @w{ISO C 9X} extension to
1141 @code{strftime}.
1143 @item %g
1144 The year corresponding to the ISO week number, but without the century
1145 (range @code{00} through @code{99}).
1147 @emph{Note:} This is not really implemented currently.  The format is
1148 recognized, input is consumed but no field in @var{tm} is set.
1150 This format is a GNU extension following a GNU extension of @code{strftime}.
1152 @item %G
1153 The year corresponding to the ISO week number.
1155 @emph{Note:} This is not really implemented currently.  The format is
1156 recognized, input is consumed but no field in @var{tm} is set.
1158 This format is a GNU extension following a GNU extension of @code{strftime}.
1160 @item %H
1161 @itemx %k
1162 The hour as a decimal number, using a 24-hour clock (range @code{00} through
1163 @code{23}).
1165 @code{%k} is a GNU extension following a GNU extension of @code{strftime}.
1167 @item %OH
1168 Same as @code{%H} but using the locale's alternative numeric symbols are used.
1170 @item %I
1171 @itemx %l
1172 The hour as a decimal number, using a 12-hour clock (range @code{01} through
1173 @code{12}).
1175 @code{%l} is a GNU extension following a GNU extension of @code{strftime}.
1177 @item %OI
1178 Same as @code{%I} but using the locale's alternative numeric symbols are used.
1180 @item %j
1181 The day of the year as a decimal number (range @code{1} through @code{366}).
1183 Leading zeroes are permitted but not required.
1185 @item %m
1186 The month as a decimal number (range @code{1} through @code{12}).
1188 Leading zeroes are permitted but not required.
1190 @item %Om
1191 Same as @code{%m} but using the locale's alternative numeric symbols are used.
1193 @item %M
1194 The minute as a decimal number (range @code{0} through @code{59}).
1196 Leading zeroes are permitted but not required.
1198 @item %OM
1199 Same as @code{%M} but using the locale's alternative numeric symbols are used.
1201 @item %n
1202 @itemx %t
1203 Matches any white space.
1205 @item %p
1206 @item %P
1207 The locale-dependent equivalent to @samp{AM} or @samp{PM}.
1209 This format is not useful unless @code{%I} or @code{%l} is also used.
1210 Another complication is that the locale might not define these values at
1211 all and therefore the conversion fails.
1213 @code{%P} is a GNU extension following a GNU extension to @code{strftime}.
1215 @item %r
1216 The complete time using the AM/PM format of the current locale.
1218 A complication is that the locale might not define this format at all
1219 and therefore the conversion fails.
1221 @item %R
1222 The hour and minute in decimal numbers using the format @code{%H:%M}.
1224 @code{%R} is a GNU extension following a GNU extension to @code{strftime}.
1226 @item %s
1227 The number of seconds since the epoch, i.e., since 1970-01-01 00:00:00 UTC.
1228 Leap seconds are not counted unless leap second support is available.
1230 @code{%s} is a GNU extension following a GNU extension to @code{strftime}.
1232 @item %S
1233 The seconds as a decimal number (range @code{0} through @code{61}).
1235 Leading zeroes are permitted but not required.
1237 Please note the nonsense with @code{61} being allowed.  This is what the
1238 Unix specification says.  They followed the stupid decision once made to
1239 allow double leap seconds.  These do not exist but the myth persists.
1241 @item %OS
1242 Same as @code{%S} but using the locale's alternative numeric symbols are used.
1244 @item %T
1245 Equivalent to the use of @code{%H:%M:%S} in this place.
1247 @item %u
1248 The day of the week as a decimal number (range @code{1} through
1249 @code{7}), Monday being @code{1}.
1251 Leading zeroes are permitted but not required.
1253 @emph{Note:} This is not really implemented currently.  The format is
1254 recognized, input is consumed but no field in @var{tm} is set.
1256 @item %U
1257 The week number of the current year as a decimal number (range @code{0}
1258 through @code{53}).
1260 Leading zeroes are permitted but not required.
1262 @item %OU
1263 Same as @code{%U} but using the locale's alternative numeric symbols are used.
1265 @item %V
1266 The @w{ISO 8601:1988} week number as a decimal number (range @code{1}
1267 through @code{53}).
1269 Leading zeroes are permitted but not required.
1271 @emph{Note:} This is not really implemented currently.  The format is
1272 recognized, input is consumed but no field in @var{tm} is set.
1274 @item %w
1275 The day of the week as a decimal number (range @code{0} through
1276 @code{6}), Sunday being @code{0}.
1278 Leading zeroes are permitted but not required.
1280 @emph{Note:} This is not really implemented currently.  The format is
1281 recognized, input is consumed but no field in @var{tm} is set.
1283 @item %Ow
1284 Same as @code{%w} but using the locale's alternative numeric symbols are used.
1286 @item %W
1287 The week number of the current year as a decimal number (range @code{0}
1288 through @code{53}).
1290 Leading zeroes are permitted but not required.
1292 @emph{Note:} This is not really implemented currently.  The format is
1293 recognized, input is consumed but no field in @var{tm} is set.
1295 @item %OW
1296 Same as @code{%W} but using the locale's alternative numeric symbols are used.
1298 @item %x
1299 The date using the locale's date format.
1301 @item %Ex
1302 Like @code{%x} but the locale's alternative data representation is used.
1304 @item %X
1305 The time using the locale's time format.
1307 @item %EX
1308 Like @code{%X} but the locale's alternative time representation is used.
1310 @item %y
1311 The year without a century as a decimal number (range @code{0} through
1312 @code{99}).
1314 Leading zeroes are permitted but not required.
1316 Please note that it is at least questionable to use this format without
1317 the @code{%C} format.  The @code{strptime} function does regard input
1318 values in the range @math{68} to @math{99} as the years @math{1969} to
1319 @math{1999} and the values @math{0} to @math{68} as the years
1320 @math{2000} to @math{2068}.  But maybe this heuristic fails for some
1321 input data.
1323 Therefore it is best to avoid @code{%y} completely and use @code{%Y}
1324 instead.
1326 @item %Ey
1327 The offset from @code{%EC} in the locale's alternative representation.
1329 @item %Oy
1330 The offset of the year (from @code{%C}) using the locale's alternative
1331 numeric symbols.
1333 @item %Y
1334 The year as a decimal number, using the Gregorian calendar.
1336 @item %EY
1337 The full alternative year representation.
1339 @item %z
1340 Equivalent to the use of @code{%a, %d %b %Y %H:%M:%S %z} in this place.
1341 This is the full @w{ISO 8601} date and time format.
1343 @item %Z
1344 The timezone name.
1346 @emph{Note:} This is not really implemented currently.  The format is
1347 recognized, input is consumed but no field in @var{tm} is set.
1349 @item %%
1350 A literal @samp{%} character.
1351 @end table
1353 All other characters in the format string must have a matching character
1354 in the input string.  Exceptions are white spaces in the input string
1355 which can match zero or more white space characters in the input string.
1357 The @code{strptime} function processes the input string from right to
1358 left.  Each of the three possible input elements (white space, literal,
1359 or format) are handled one after the other.  If the input cannot be
1360 matched to the format string the function stops.  The remainder of the
1361 format and input strings are not processed.
1363 The return value of the function is a pointer to the first character not
1364 processed in this function call.  In case the input string contains more
1365 characters than required by the format string the return value points
1366 right after the last consumed input character.  In case the whole input
1367 string is consumed the return value points to the NUL byte at the end of
1368 the string.  If @code{strptime} fails to match all of the format string
1369 and therefore an error occurred the function returns @code{NULL}.
1370 @end deftypefun
1372 The specification of the function in the XPG standard is rather vague.
1373 It leaves out a few important pieces of information.  Most important it
1374 does not specify what happens to those elements of @var{tm} which are
1375 not directly initialized by the different formats.  Various
1376 implementations on different Unix systems vary here.
1378 The GNU libc implementation does not touch those fields which are not
1379 directly initialized.  Exceptions are the @code{tm_wday} and
1380 @code{tm_yday} elements which are recomputed if any of the year, month,
1381 or date elements changed.  This has two implications:
1383 @itemize @bullet
1384 @item
1385 Before calling the @code{strptime} function for a new input string one
1386 has to prepare the structure passed in as the @var{tm}.  Normally this
1387 will mean that all values are initialized to zero.  Alternatively one
1388 can use all fields to values like @code{INT_MAX} which allows to
1389 determine which elements were set by the function call.  Zero does not
1390 work here since it is a valid value for many of the fields.
1392 Careful initialization is necessary if one wants to find out whether a
1393 certain field in @var{tm} was initialized by the function call.
1395 @item
1396 One can construct a @code{struct tm} value in several @code{strptime}
1397 calls in a row.  A useful application of this is for example the parsing
1398 of two separate strings, one containing the date information, the other
1399 the time information.  By parsing both one after the other without
1400 clearing the structure in between one can construct a complete
1401 broken-down time.
1402 @end itemize
1404 The following example shows a function which parses a string which is
1405 supposed to contain the date information in either US style or @w{ISO
1406 8601} form.
1408 @smallexample
1409 const char *
1410 parse_date (const char *input, struct tm *tm)
1412   const char *cp;
1414   /* @r{First clear the result structure.}  */
1415   memset (tm, '\0', sizeof (*tm));
1417   /* @r{Try the ISO format first.}  */
1418   cp = strptime (input, "%F", tm);
1419   if (cp == NULL)
1420     @{
1421       /* @r{Does not match.  Try the US form.}  */
1422       cp = strptime (input, "%D", tm);
1423     @}
1425   return cp;
1427 @end smallexample
1429 @node General Time String Parsing
1430 @subsubsection A user-friendlier way to parse times and dates
1432 The Unix standard defines another function to parse date strings.  The
1433 interface is, mildly said, weird.  But if this function fits into the
1434 application to be written it is just fine.  It is a problem when using
1435 this function in multi-threaded programs or in libraries since it
1436 returns a pointer to a static variable, uses a global variable, and a
1437 global state (an environment variable).
1439 @comment time.h
1440 @comment Unix98
1441 @defvar getdate_err
1442 This variable of type @code{int} will contain the error code of the last
1443 unsuccessful call of the @code{getdate} function.  Defined values are:
1445 @table @math
1446 @item 1
1447 The environment variable @code{DATEMSK} is not defined or null.
1448 @item 2
1449 The template file denoted by the @code{DATEMSK} environment variable
1450 cannot be opened.
1451 @item 3
1452 Information about the template file cannot retrieved.
1453 @item 4
1454 The template file is no regular file.
1455 @item 5
1456 An I/O error occurred while reading the template file.
1457 @item 6
1458 Not enough memory available to execute the function.
1459 @item 7
1460 The template file contains no matching template.
1461 @item 8
1462 The input string is invalid for a template which would match otherwise.
1463 This includes error like February 31st, or return values which can be
1464 represented using @code{time_t}.
1465 @end table
1466 @end defvar
1468 @comment time.h
1469 @comment Unix98
1470 @deftypefun {struct tm *} getdate (const char *@var{string})
1471 The interface of the @code{getdate} function is the simplest possible
1472 for a function to parse a string and return the value.  @var{string} is
1473 the input string and the result is passed to the user in a statically
1474 allocated variable.
1476 The details about how the string is processed is hidden from the user.
1477 In fact, it can be outside the control of the program.  Which formats
1478 are recognized is controlled by the file named by the environment
1479 variable @code{DATEMSK}.  The content of the named file should contain
1480 lines of valid format strings which could be passed to @code{strptime}.
1482 The @code{getdate} function reads these format strings one after the
1483 other and tries to match the input string.  The first line which
1484 completely matches the input string is used.
1486 Elements which were not initialized through the format string get
1487 assigned the values of the time the @code{getdate} function is called.
1489 The format elements recognized by @code{getdate} are the same as for
1490 @code{strptime}.  See above for an explanation.  There are only a few
1491 extension to the @code{strptime} behavior:
1493 @itemize @bullet
1494 @item
1495 If the @code{%Z} format is given the broken-down time is based on the
1496 current time in the timezone matched, not in the current timezone of the
1497 runtime environment.
1499 @emph{Note}: This is not implemented (currently).  The problem is that
1500 timezone names are not unique.  If a fixed timezone is assumed for a
1501 given string (say @code{EST} meaning US East Coast time) uses for
1502 countries other than the USA will fail.  So far we have found no good
1503 solution for this.
1505 @item
1506 If only the weekday is specified the selected day depends on the current
1507 date.  If the current weekday is greater or equal to the @code{tm_wday}
1508 value this weeks day is selected.  Otherwise next weeks day.
1510 @item
1511 A similar heuristic is used if only the month is given, not the year.
1512 For value corresponding to the current or a later month the current year
1513 s used.  Otherwise the next year.  The first day of the month is assumed
1514 if it is not explicitly specified.
1516 @item
1517 The current hour, minute, and second is used if the appropriate value is
1518 not set through the format.
1520 @item
1521 If no date is given the date for the next day is used if the time is
1522 smaller than the current time.  Otherwise it is the same day.
1523 @end itemize
1525 It should be noted that the format in the template file need not only
1526 contain format elements.  The following is a list of possible format
1527 strings (taken from the Unix standard):
1529 @smallexample
1531 %A %B %d, %Y %H:%M:%S
1534 %m/%d/%y %I %p
1535 %d,%m,%Y %H:%M
1536 at %A the %dst of %B in %Y
1537 run job at %I %p,%B %dnd
1538 %A den %d. %B %Y %H.%M Uhr
1539 @end smallexample
1541 As one can see the template list can contain very specific strings like
1542 @code{run job at %I %p,%B %dnd}.  Using the above list of templates and
1543 assuming the current time is Mon Sep 22 12:19:47 EDT 1986 we can get the
1544 following results for the given input.
1546 @multitable {xxxxxxxxxxxx} {xxxxxxxxxx} {xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx}
1547 @item        Mon @tab       %a @tab    Mon Sep 22 12:19:47 EDT 1986
1548 @item        Sun @tab       %a @tab    Sun Sep 28 12:19:47 EDT 1986
1549 @item        Fri @tab       %a @tab    Fri Sep 26 12:19:47 EDT 1986
1550 @item        September @tab %B @tab    Mon Sep 1 12:19:47 EDT 1986
1551 @item        January @tab   %B @tab    Thu Jan 1 12:19:47 EST 1987
1552 @item        December @tab  %B @tab    Mon Dec 1 12:19:47 EST 1986
1553 @item        Sep Mon @tab   %b %a @tab Mon Sep 1 12:19:47 EDT 1986
1554 @item        Jan Fri @tab   %b %a @tab Fri Jan 2 12:19:47 EST 1987
1555 @item        Dec Mon @tab   %b %a @tab Mon Dec 1 12:19:47 EST 1986
1556 @item        Jan Wed 1989 @tab  %b %a %Y @tab Wed Jan 4 12:19:47 EST 1989
1557 @item        Fri 9 @tab     %a %H @tab Fri Sep 26 09:00:00 EDT 1986
1558 @item        Feb 10:30 @tab %b %H:%S @tab Sun Feb 1 10:00:30 EST 1987
1559 @item        10:30 @tab     %H:%M @tab Tue Sep 23 10:30:00 EDT 1986
1560 @item        13:30 @tab     %H:%M @tab Mon Sep 22 13:30:00 EDT 1986
1561 @end multitable
1563 The return value of the function is a pointer to a static variable of
1564 type @w{@code{struct tm}} or a null pointer if an error occurred.  The
1565 result in the variable pointed to by the return value is only valid
1566 until the next @code{getdate} call which makes this function unusable in
1567 multi-threaded applications.
1569 The @code{errno} variable is @emph{not} changed.  Error conditions are
1570 signalled using the global variable @code{getdate_err}.  See the
1571 description above for a list of the possible error values.
1573 @emph{Warning:} The @code{getdate} function should @emph{never} be
1574 used in SUID-programs.  The reason is obvious: using the
1575 @code{DATEMSK} environment variable one can get the function to open
1576 any arbitrary file and chances are high that with some bogus input
1577 (such as a binary file) the program will crash.
1578 @end deftypefun
1580 @comment time.h
1581 @comment GNU
1582 @deftypefun int getdate_r (const char *@var{string}, struct tm *@var{tp})
1583 The @code{getdate_r} function is the reentrant counterpart of
1584 @code{getdate}.  It does not use the global variable @code{getdate_err}
1585 to signal the error but instead the return value now is this error code.
1586 The same error codes as described in the @code{getdate_err}
1587 documentation above are used.
1589 @code{getdate_r} also does not store the broken-down time in a static
1590 variable.  Instead it takes an second argument which must be a pointer
1591 to a variable of type @code{struct tm} where the broken-down can be
1592 stored.
1594 This function is not defined in the Unix standard.  Nevertheless it is
1595 available on some other Unix systems as well.
1597 As for @code{getdate} the warning for using this function in
1598 SUID-programs applies to @code{getdate_r} as well.
1599 @end deftypefun
1601 @node TZ Variable
1602 @subsection Specifying the Time Zone with @code{TZ}
1604 In POSIX systems, a user can specify the time zone by means of the
1605 @code{TZ} environment variable.  For information about how to set
1606 environment variables, see @ref{Environment Variables}.  The functions
1607 for accessing the time zone are declared in @file{time.h}.
1608 @pindex time.h
1609 @cindex time zone
1611 You should not normally need to set @code{TZ}.  If the system is
1612 configured properly, the default time zone will be correct.  You might
1613 set @code{TZ} if you are using a computer over the network from a
1614 different time zone, and would like times reported to you in the time zone
1615 that local for you, rather than what is local for the computer.
1617 In POSIX.1 systems the value of the @code{TZ} variable can be of one of
1618 three formats.  With the GNU C library, the most common format is the
1619 last one, which can specify a selection from a large database of time
1620 zone information for many regions of the world.  The first two formats
1621 are used to describe the time zone information directly, which is both
1622 more cumbersome and less precise.  But the POSIX.1 standard only
1623 specifies the details of the first two formats, so it is good to be
1624 familiar with them in case you come across a POSIX.1 system that doesn't
1625 support a time zone information database.
1627 The first format is used when there is no Daylight Saving Time (or
1628 summer time) in the local time zone:
1630 @smallexample
1631 @r{@var{std} @var{offset}}
1632 @end smallexample
1634 The @var{std} string specifies the name of the time zone.  It must be
1635 three or more characters long and must not contain a leading colon or
1636 embedded digits, commas, or plus or minus signs.  There is no space
1637 character separating the time zone name from the @var{offset}, so these
1638 restrictions are necessary to parse the specification correctly.
1640 The @var{offset} specifies the time value one must add to the local time
1641 to get a Coordinated Universal Time value.  It has syntax like
1642 [@code{+}|@code{-}]@var{hh}[@code{:}@var{mm}[@code{:}@var{ss}]].  This
1643 is positive if the local time zone is west of the Prime Meridian and
1644 negative if it is east.  The hour must be between @code{0} and
1645 @code{23}, and the minute and seconds between @code{0} and @code{59}.
1647 For example, here is how we would specify Eastern Standard Time, but
1648 without any daylight saving time alternative:
1650 @smallexample
1651 EST+5
1652 @end smallexample
1654 The second format is used when there is Daylight Saving Time:
1656 @smallexample
1657 @r{@var{std} @var{offset} @var{dst} [@var{offset}]@code{,}@var{start}[@code{/}@var{time}]@code{,}@var{end}[@code{/}@var{time}]}
1658 @end smallexample
1660 The initial @var{std} and @var{offset} specify the standard time zone, as
1661 described above.  The @var{dst} string and @var{offset} specify the name
1662 and offset for the corresponding daylight saving time zone; if the
1663 @var{offset} is omitted, it defaults to one hour ahead of standard time.
1665 The remainder of the specification describes when daylight saving time is
1666 in effect.  The @var{start} field is when daylight saving time goes into
1667 effect and the @var{end} field is when the change is made back to standard
1668 time.  The following formats are recognized for these fields:
1670 @table @code
1671 @item J@var{n}
1672 This specifies the Julian day, with @var{n} between @code{1} and @code{365}.
1673 February 29 is never counted, even in leap years.
1675 @item @var{n}
1676 This specifies the Julian day, with @var{n} between @code{0} and @code{365}.
1677 February 29 is counted in leap years.
1679 @item M@var{m}.@var{w}.@var{d}
1680 This specifies day @var{d} of week @var{w} of month @var{m}.  The day
1681 @var{d} must be between @code{0} (Sunday) and @code{6}.  The week
1682 @var{w} must be between @code{1} and @code{5}; week @code{1} is the
1683 first week in which day @var{d} occurs, and week @code{5} specifies the
1684 @emph{last} @var{d} day in the month.  The month @var{m} should be
1685 between @code{1} and @code{12}.
1686 @end table
1688 The @var{time} fields specify when, in the local time currently in
1689 effect, the change to the other time occurs.  If omitted, the default is
1690 @code{02:00:00}.
1692 For example, here is how one would specify the Eastern time zone in the
1693 United States, including the appropriate daylight saving time and its dates
1694 of applicability.  The normal offset from UTC is 5 hours; since this is
1695 west of the prime meridian, the sign is positive.  Summer time begins on
1696 the first Sunday in April at 2:00am, and ends on the last Sunday in October
1697 at 2:00am.
1699 @smallexample
1700 EST+5EDT,M4.1.0/2,M10.5.0/2
1701 @end smallexample
1703 The schedule of daylight saving time in any particular jurisdiction has
1704 changed over the years.  To be strictly correct, the conversion of dates
1705 and times in the past should be based on the schedule that was in effect
1706 then.  However, this format has no facilities to let you specify how the
1707 schedule has changed from year to year.  The most you can do is specify
1708 one particular schedule---usually the present day schedule---and this is
1709 used to convert any date, no matter when.  For precise time zone
1710 specifications, it is best to use the time zone information database
1711 (see below).
1713 The third format looks like this:
1715 @smallexample
1716 :@var{characters}
1717 @end smallexample
1719 Each operating system interprets this format differently; in the GNU C
1720 library, @var{characters} is the name of a file which describes the time
1721 zone.
1723 @pindex /etc/localtime
1724 @pindex localtime
1725 If the @code{TZ} environment variable does not have a value, the
1726 operation chooses a time zone by default.  In the GNU C library, the
1727 default time zone is like the specification @samp{TZ=:/etc/localtime}
1728 (or @samp{TZ=:/usr/local/etc/localtime}, depending on how GNU C library
1729 was configured; @pxref{Installation}).  Other C libraries use their own
1730 rule for choosing the default time zone, so there is little we can say
1731 about them.
1733 @cindex time zone database
1734 @pindex /share/lib/zoneinfo
1735 @pindex zoneinfo
1736 If @var{characters} begins with a slash, it is an absolute file name;
1737 otherwise the library looks for the file
1738 @w{@file{/share/lib/zoneinfo/@var{characters}}}.  The @file{zoneinfo}
1739 directory contains data files describing local time zones in many
1740 different parts of the world.  The names represent major cities, with
1741 subdirectories for geographical areas; for example,
1742 @file{America/New_York}, @file{Europe/London}, @file{Asia/Hong_Kong}.
1743 These data files are installed by the system administrator, who also
1744 sets @file{/etc/localtime} to point to the data file for the local time
1745 zone.  The GNU C library comes with a large database of time zone
1746 information for most regions of the world, which is maintained by a
1747 community of volunteers and put in the public domain.
1749 @node Time Zone Functions
1750 @subsection Functions and Variables for Time Zones
1752 @comment time.h
1753 @comment POSIX.1
1754 @deftypevar {char *} tzname [2]
1755 The array @code{tzname} contains two strings, which are the standard
1756 names of the pair of time zones (standard and daylight
1757 saving) that the user has selected.  @code{tzname[0]} is the name of
1758 the standard time zone (for example, @code{"EST"}), and @code{tzname[1]}
1759 is the name for the time zone when daylight saving time is in use (for
1760 example, @code{"EDT"}).  These correspond to the @var{std} and @var{dst}
1761 strings (respectively) from the @code{TZ} environment variable.  If
1762 daylight saving time is never used, @code{tzname[1]} is the empty string.
1764 The @code{tzname} array is initialized from the @code{TZ} environment
1765 variable whenever @code{tzset}, @code{ctime}, @code{strftime},
1766 @code{mktime}, or @code{localtime} is called.  If multiple abbreviations
1767 have been used (e.g. @code{"EWT"} and @code{"EDT"} for U.S. Eastern War
1768 Time and Eastern Daylight Time), the array contains the most recent
1769 abbreviation.
1771 The @code{tzname} array is required for POSIX.1 compatibility, but in
1772 GNU programs it is better to use the @code{tm_zone} member of the
1773 broken-down time structure, since @code{tm_zone} reports the correct
1774 abbreviation even when it is not the latest one.
1776 Though the strings are declared as @code{char *} the user must stay away
1777 from modifying these strings.  Modifying the strings will almost certainly
1778 lead to trouble.
1780 @end deftypevar
1782 @comment time.h
1783 @comment POSIX.1
1784 @deftypefun void tzset (void)
1785 The @code{tzset} function initializes the @code{tzname} variable from
1786 the value of the @code{TZ} environment variable.  It is not usually
1787 necessary for your program to call this function, because it is called
1788 automatically when you use the other time conversion functions that
1789 depend on the time zone.
1790 @end deftypefun
1792 The following variables are defined for compatibility with System V
1793 Unix.  Like @code{tzname}, these variables are set by calling
1794 @code{tzset} or the other time conversion functions.
1796 @comment time.h
1797 @comment SVID
1798 @deftypevar {long int} timezone
1799 This contains the difference between UTC and the latest local standard
1800 time, in seconds west of UTC.  For example, in the U.S. Eastern time
1801 zone, the value is @code{5*60*60}.  Unlike the @code{tm_gmtoff} member
1802 of the broken-down time structure, this value is not adjusted for
1803 daylight saving, and its sign is reversed.  In GNU programs it is better
1804 to use @code{tm_gmtoff}, since it contains the correct offset even when
1805 it is not the latest one.
1806 @end deftypevar
1808 @comment time.h
1809 @comment SVID
1810 @deftypevar int daylight
1811 This variable has a nonzero value if daylight savings time rules apply.
1812 A nonzero value does not necessarily mean that daylight savings time is
1813 now in effect; it means only that daylight savings time is sometimes in
1814 effect.
1815 @end deftypevar
1817 @node Time Functions Example
1818 @subsection Time Functions Example
1820 Here is an example program showing the use of some of the local time and
1821 calendar time functions.
1823 @smallexample
1824 @include strftim.c.texi
1825 @end smallexample
1827 It produces output like this:
1829 @smallexample
1830 Wed Jul 31 13:02:36 1991
1831 Today is Wednesday, July 31.
1832 The time is 01:02 PM.
1833 @end smallexample
1836 @node Precision Time
1837 @section Precision Time
1839 @cindex time, high precision
1840 @pindex sys/timex.h
1841 The @code{net_gettime} and @code{ntp_adjtime} functions provide an
1842 interface to monitor and manipulate high precision time.  These
1843 functions are declared in @file{sys/timex.h}.
1845 @tindex struct ntptimeval
1846 @deftp {Data Type} {struct ntptimeval}
1847 This structure is used to monitor kernel time.  It contains the
1848 following members:
1849 @table @code
1850 @item struct timeval time
1851 This is the current time.  The @code{struct timeval} data type is
1852 described in @ref{High-Resolution Calendar}.
1854 @item long int maxerror
1855 This is the maximum error, measured in microseconds.  Unless updated
1856 via @code{ntp_adjtime} periodically, this value will reach some
1857 platform-specific maximum value.
1859 @item long int esterror
1860 This is the estimated error, measured in microseconds.  This value can
1861 be set by @code{ntp_adjtime} to indicate the estimated offset of the
1862 local clock against the true time.
1863 @end table
1864 @end deftp
1866 @comment sys/timex,h
1867 @comment GNU
1868 @deftypefun int ntp_gettime (struct ntptimeval *@var{tptr})
1869 The @code{ntp_gettime} function sets the structure pointed to by
1870 @var{tptr} to current values.  The elements of the structure afterwards
1871 contain the values the timer implementation in the kernel assumes.  They
1872 might or might not be correct.  If they are not a @code{ntp_adjtime}
1873 call is necessary.
1875 The return value is @code{0} on success and other values on failure.  The
1876 following @code{errno} error conditions are defined for this function:
1878 @table @code
1879 @item TIME_ERROR
1880 The precision clock model is not properly set up at the moment, thus the
1881 clock must be considered unsynchronized, and the values should be
1882 treated with care.
1883 @end table
1884 @end deftypefun
1886 @tindex struct timex
1887 @deftp {Data Type} {struct timex}
1888 This structure is used to control and monitor kernel time in a greater
1889 level of detail.  It contains the following members:
1890 @table @code
1891 @item unsigned int modes
1892 This variable controls whether and which values are set.  Several
1893 symbolic constants have to be combined with @emph{binary or} to specify
1894 the effective mode.  These constants start with @code{MOD_}.
1896 @item long int offset
1897 This value indicates the current offset of the local clock from the true
1898 time.  The value is given in microseconds.  If bit @code{MOD_OFFSET} is
1899 set in @code{modes}, the offset (and possibly other dependent values) can
1900 be set.  The offset's absolute value must not exceed @code{MAXPHASE}.
1902 @item long int frequency
1903 This value indicates the difference in frequency between the true time
1904 and the local clock.  The value is expressed as scaled PPM (parts per
1905 million, 0.0001%).  The scaling is @code{1 << SHIFT_USEC}.  The value
1906 can be set with bit @code{MOD_FREQUENCY}, but the absolute value must
1907 not exceed @code{MAXFREQ}.
1909 @item long int maxerror
1910 This is the maximum error, measured in microseconds.  A new value can be
1911 set using bit @code{MOD_MAXERROR}.  Unless updated via
1912 @code{ntp_adjtime} periodically, this value will increase steadily
1913 and reach some platform-specific maximum value.
1915 @item long int esterror
1916 This is the estimated error, measured in microseconds.  This value can
1917 be set using bit @code{MOD_ESTERROR}.
1919 @item int status
1920 This valiable reflects the various states of the clock machinery.  There
1921 are symbolic constants for the significant bits, starting with
1922 @code{STA_}.  Some of these flags can be updated using the
1923 @code{MOD_STATUS} bit.
1925 @item long int constant
1926 This value represents the bandwidth or stiffness of the PLL (phase
1927 locked loop) implemented in the kernel.  The value can be changed using
1928 bit @code{MOD_TIMECONST}.
1930 @item long int precision
1931 This value represents the accuracy or the maximum error when reading the
1932 system clock.  The value is expressed in microseconds and can't be changed.
1934 @item long int tolerance
1935 This value represents the maximum frequency error of the system clock in
1936 scaled PPM.  This value is used to increase the @code{maxerror} every
1937 second.
1939 @item long int ppsfreq
1940 This is the first of a few optional variables that are present only if
1941 the system clock can use a PPS (pulse per second) signal to discipline
1942 the local clock.  The value is expressed in scaled PPM and it denotes
1943 the difference in frequency between the local clock and the PPS signal.
1945 @item long int jitter
1946 This value expresses a median filtered average of the PPS signal's
1947 dispersion in microseconds.
1949 @item int int shift
1950 This value is a binary exponent for the duration of the PPS calibration
1951 interval, ranging from @code{PPS_SHIFT} to @code{PPS_SHIFTMAX}.
1953 @item long int stabil
1954 This value represents the median filtered dispersion of the PPS
1955 frequency in scaled PPM.
1957 @item long int jitcnt
1958 This counter represents the numer of pulses where the jitter exceeded
1959 the allowed maximum @code{MAXTIME}.
1961 @item long int calcnt
1962 This counter reflects the number of successful calibration intervals.
1964 @item long int errcnt
1965 This counter represents the number of calibration errors (caused by
1966 large offsets or jitter).
1968 @item long int stbcnt
1969 This counter denotes the number of of calibrations where the stability
1970 exceeded the threshold.
1971 @end table
1972 @end deftp
1974 @comment sys/timex.h
1975 @comment GNU
1976 @deftypefun int ntp_adjtime (struct timex *@var{tptr})
1977 The @code{ntp_adjtime} function sets the structure specified by
1978 @var{tptr} to current values.  In addition, values passed in @var{tptr}
1979 can be used to replace existing settings.  To do this the @code{modes}
1980 element of the @code{struct timex} must be set appropriately.  Setting
1981 it to zero selects reading the current state.
1983 The return value is @code{0} on success and other values on failure.  The
1984 following @code{errno} error conditions are defined for this function:
1986 @table @code
1987 @item TIME_ERROR
1988 The precision clock model is not properly set up at the moment, thus the
1989 clock must be considered unsynchronized, and the values should be
1990 treated with care.  Another reason could be that the specified new values
1991 are not allowed.
1992 @end table
1994 For more details see RFC1305 (Network Time Protocol, Version 3) and
1995 related documents.
1996 @end deftypefun
1999 @node Setting an Alarm
2000 @section Setting an Alarm
2002 The @code{alarm} and @code{setitimer} functions provide a mechanism for a
2003 process to interrupt itself at some future time.  They do this by setting a
2004 timer; when the timer expires, the process receives a signal.
2006 @cindex setting an alarm
2007 @cindex interval timer, setting
2008 @cindex alarms, setting
2009 @cindex timers, setting
2010 Each process has three independent interval timers available:
2012 @itemize @bullet
2013 @item
2014 A real-time timer that counts clock time.  This timer sends a
2015 @code{SIGALRM} signal to the process when it expires.
2016 @cindex real-time timer
2017 @cindex timer, real-time
2019 @item
2020 A virtual timer that counts CPU time used by the process.  This timer
2021 sends a @code{SIGVTALRM} signal to the process when it expires.
2022 @cindex virtual timer
2023 @cindex timer, virtual
2025 @item
2026 A profiling timer that counts both CPU time used by the process, and CPU
2027 time spent in system calls on behalf of the process.  This timer sends a
2028 @code{SIGPROF} signal to the process when it expires.
2029 @cindex profiling timer
2030 @cindex timer, profiling
2032 This timer is useful for profiling in interpreters.  The interval timer
2033 mechanism does not have the fine granularity necessary for profiling
2034 native code.
2035 @c @xref{profil} !!!
2036 @end itemize
2038 You can only have one timer of each kind set at any given time.  If you
2039 set a timer that has not yet expired, that timer is simply reset to the
2040 new value.
2042 You should establish a handler for the appropriate alarm signal using
2043 @code{signal} or @code{sigaction} before issuing a call to @code{setitimer}
2044 or @code{alarm}.  Otherwise, an unusual chain of events could cause the
2045 timer to expire before your program establishes the handler, and in that
2046 case it would be terminated, since that is the default action for the alarm
2047 signals.  @xref{Signal Handling}.
2049 The @code{setitimer} function is the primary means for setting an alarm.
2050 This facility is declared in the header file @file{sys/time.h}.  The
2051 @code{alarm} function, declared in @file{unistd.h}, provides a somewhat
2052 simpler interface for setting the real-time timer.
2053 @pindex unistd.h
2054 @pindex sys/time.h
2056 @comment sys/time.h
2057 @comment BSD
2058 @deftp {Data Type} {struct itimerval}
2059 This structure is used to specify when a timer should expire.  It contains
2060 the following members:
2061 @table @code
2062 @item struct timeval it_interval
2063 This is the interval between successive timer interrupts.  If zero, the
2064 alarm will only be sent once.
2066 @item struct timeval it_value
2067 This is the interval to the first timer interrupt.  If zero, the alarm is
2068 disabled.
2069 @end table
2071 The @code{struct timeval} data type is described in @ref{High-Resolution
2072 Calendar}.
2073 @end deftp
2075 @comment sys/time.h
2076 @comment BSD
2077 @deftypefun int setitimer (int @var{which}, struct itimerval *@var{new}, struct itimerval *@var{old})
2078 The @code{setitimer} function sets the timer specified by @var{which}
2079 according to @var{new}.  The @var{which} argument can have a value of
2080 @code{ITIMER_REAL}, @code{ITIMER_VIRTUAL}, or @code{ITIMER_PROF}.
2082 If @var{old} is not a null pointer, @code{setitimer} returns information
2083 about any previous unexpired timer of the same kind in the structure it
2084 points to.
2086 The return value is @code{0} on success and @code{-1} on failure.  The
2087 following @code{errno} error conditions are defined for this function:
2089 @table @code
2090 @item EINVAL
2091 The timer interval was too large.
2092 @end table
2093 @end deftypefun
2095 @comment sys/time.h
2096 @comment BSD
2097 @deftypefun int getitimer (int @var{which}, struct itimerval *@var{old})
2098 The @code{getitimer} function stores information about the timer specified
2099 by @var{which} in the structure pointed at by @var{old}.
2101 The return value and error conditions are the same as for @code{setitimer}.
2102 @end deftypefun
2104 @comment sys/time.h
2105 @comment BSD
2106 @table @code
2107 @item ITIMER_REAL
2108 @findex ITIMER_REAL
2109 This constant can be used as the @var{which} argument to the
2110 @code{setitimer} and @code{getitimer} functions to specify the real-time
2111 timer.
2113 @comment sys/time.h
2114 @comment BSD
2115 @item ITIMER_VIRTUAL
2116 @findex ITIMER_VIRTUAL
2117 This constant can be used as the @var{which} argument to the
2118 @code{setitimer} and @code{getitimer} functions to specify the virtual
2119 timer.
2121 @comment sys/time.h
2122 @comment BSD
2123 @item ITIMER_PROF
2124 @findex ITIMER_PROF
2125 This constant can be used as the @var{which} argument to the
2126 @code{setitimer} and @code{getitimer} functions to specify the profiling
2127 timer.
2128 @end table
2130 @comment unistd.h
2131 @comment POSIX.1
2132 @deftypefun {unsigned int} alarm (unsigned int @var{seconds})
2133 The @code{alarm} function sets the real-time timer to expire in
2134 @var{seconds} seconds.  If you want to cancel any existing alarm, you
2135 can do this by calling @code{alarm} with a @var{seconds} argument of
2136 zero.
2138 The return value indicates how many seconds remain before the previous
2139 alarm would have been sent.  If there is no previous alarm, @code{alarm}
2140 returns zero.
2141 @end deftypefun
2143 The @code{alarm} function could be defined in terms of @code{setitimer}
2144 like this:
2146 @smallexample
2147 unsigned int
2148 alarm (unsigned int seconds)
2150   struct itimerval old, new;
2151   new.it_interval.tv_usec = 0;
2152   new.it_interval.tv_sec = 0;
2153   new.it_value.tv_usec = 0;
2154   new.it_value.tv_sec = (long int) seconds;
2155   if (setitimer (ITIMER_REAL, &new, &old) < 0)
2156     return 0;
2157   else
2158     return old.it_value.tv_sec;
2160 @end smallexample
2162 There is an example showing the use of the @code{alarm} function in
2163 @ref{Handler Returns}.
2165 If you simply want your process to wait for a given number of seconds,
2166 you should use the @code{sleep} function.  @xref{Sleeping}.
2168 You shouldn't count on the signal arriving precisely when the timer
2169 expires.  In a multiprocessing environment there is typically some
2170 amount of delay involved.
2172 @strong{Portability Note:} The @code{setitimer} and @code{getitimer}
2173 functions are derived from BSD Unix, while the @code{alarm} function is
2174 specified by the POSIX.1 standard.  @code{setitimer} is more powerful than
2175 @code{alarm}, but @code{alarm} is more widely used.
2177 @node Sleeping
2178 @section Sleeping
2180 The function @code{sleep} gives a simple way to make the program wait
2181 for short periods of time.  If your program doesn't use signals (except
2182 to terminate), then you can expect @code{sleep} to wait reliably for
2183 the specified amount of time.  Otherwise, @code{sleep} can return sooner
2184 if a signal arrives; if you want to wait for a given period regardless
2185 of signals, use @code{select} (@pxref{Waiting for I/O}) and don't
2186 specify any descriptors to wait for.
2187 @c !!! select can get EINTR; using SA_RESTART makes sleep win too.
2189 @comment unistd.h
2190 @comment POSIX.1
2191 @deftypefun {unsigned int} sleep (unsigned int @var{seconds})
2192 The @code{sleep} function waits for @var{seconds} or until a signal
2193 is delivered, whichever happens first.
2195 If @code{sleep} function returns because the requested time has
2196 elapsed, it returns a value of zero.  If it returns because of delivery
2197 of a signal, its return value is the remaining time in the sleep period.
2199 The @code{sleep} function is declared in @file{unistd.h}.
2200 @end deftypefun
2202 Resist the temptation to implement a sleep for a fixed amount of time by
2203 using the return value of @code{sleep}, when nonzero, to call
2204 @code{sleep} again.  This will work with a certain amount of accuracy as
2205 long as signals arrive infrequently.  But each signal can cause the
2206 eventual wakeup time to be off by an additional second or so.  Suppose a
2207 few signals happen to arrive in rapid succession by bad luck---there is
2208 no limit on how much this could shorten or lengthen the wait.
2210 Instead, compute the time at which the program should stop waiting, and
2211 keep trying to wait until that time.  This won't be off by more than a
2212 second.  With just a little more work, you can use @code{select} and
2213 make the waiting period quite accurate.  (Of course, heavy system load
2214 can cause unavoidable additional delays---unless the machine is
2215 dedicated to one application, there is no way you can avoid this.)
2217 On some systems, @code{sleep} can do strange things if your program uses
2218 @code{SIGALRM} explicitly.  Even if @code{SIGALRM} signals are being
2219 ignored or blocked when @code{sleep} is called, @code{sleep} might
2220 return prematurely on delivery of a @code{SIGALRM} signal.  If you have
2221 established a handler for @code{SIGALRM} signals and a @code{SIGALRM}
2222 signal is delivered while the process is sleeping, the action taken
2223 might be just to cause @code{sleep} to return instead of invoking your
2224 handler.  And, if @code{sleep} is interrupted by delivery of a signal
2225 whose handler requests an alarm or alters the handling of @code{SIGALRM},
2226 this handler and @code{sleep} will interfere.
2228 On the GNU system, it is safe to use @code{sleep} and @code{SIGALRM} in
2229 the same program, because @code{sleep} does not work by means of
2230 @code{SIGALRM}.
2232 @comment time.h
2233 @comment POSIX.1
2234 @deftypefun int nanosleep (const struct timespec *@var{requested_time}, struct timespec *@var{remaining})
2235 If the resolution of seconds is not enough the @code{nanosleep} function
2236 can be used.  As the name suggests the sleeping period can be specified
2237 in nanoseconds.  The actual period of waiting time might be longer since
2238 the requested time in the @var{requested_time} parameter is rounded up
2239 to the next integer multiple of the actual resolution of the system.
2241 If the function returns because the time has elapsed the return value is
2242 zero.  If the function return @math{-1} the global variable @var{errno}
2243 is set to the following values:
2245 @table @code
2246 @item EINTR
2247 The call was interrupted because a signal was delivered to the thread.
2248 If the @var{remaining} parameter is not the null pointer the structure
2249 pointed to by @var{remaining} is updated to contain the remaining time.
2251 @item EINVAL
2252 The nanosecond value in the @var{requested_time} parameter contains an
2253 illegal value.  Either the value is negative or greater than or equal to
2254 1000 million.
2255 @end table
2257 This function is a cancelation point in multi-threaded programs.  This
2258 is a problem if the thread allocates some resources (like memory, file
2259 descriptors, semaphores or whatever) at the time @code{nanosleep} is
2260 called.  If the thread gets canceled these resources stay allocated
2261 until the program ends.  To avoid this calls to @code{nanosleep} should
2262 be protected using cancelation handlers.
2263 @c ref pthread_cleanup_push / pthread_cleanup_pop
2265 The @code{nanosleep} function is declared in @file{time.h}.
2266 @end deftypefun
2268 @node Resource Usage
2269 @section Resource Usage
2271 @pindex sys/resource.h
2272 The function @code{getrusage} and the data type @code{struct rusage}
2273 are used for examining the usage figures of a process.  They are declared
2274 in @file{sys/resource.h}.
2276 @comment sys/resource.h
2277 @comment BSD
2278 @deftypefun int getrusage (int @var{processes}, struct rusage *@var{rusage})
2279 This function reports the usage totals for processes specified by
2280 @var{processes}, storing the information in @code{*@var{rusage}}.
2282 In most systems, @var{processes} has only two valid values:
2284 @table @code
2285 @comment sys/resource.h
2286 @comment BSD
2287 @item RUSAGE_SELF
2288 Just the current process.
2290 @comment sys/resource.h
2291 @comment BSD
2292 @item RUSAGE_CHILDREN
2293 All child processes (direct and indirect) that have terminated already.
2294 @end table
2296 In the GNU system, you can also inquire about a particular child process
2297 by specifying its process ID.
2299 The return value of @code{getrusage} is zero for success, and @code{-1}
2300 for failure.
2302 @table @code
2303 @item EINVAL
2304 The argument @var{processes} is not valid.
2305 @end table
2306 @end deftypefun
2308 One way of getting usage figures for a particular child process is with
2309 the function @code{wait4}, which returns totals for a child when it
2310 terminates.  @xref{BSD Wait Functions}.
2312 @comment sys/resource.h
2313 @comment BSD
2314 @deftp {Data Type} {struct rusage}
2315 This data type records a collection usage amounts for various sorts of
2316 resources.  It has the following members, and possibly others:
2318 @table @code
2319 @item struct timeval ru_utime
2320 Time spent executing user instructions.
2322 @item struct timeval ru_stime
2323 Time spent in operating system code on behalf of @var{processes}.
2325 @item long int ru_maxrss
2326 The maximum resident set size used, in kilobytes.  That is, the maximum
2327 number of kilobytes that @var{processes} used in real memory simultaneously.
2329 @item long int ru_ixrss
2330 An integral value expressed in kilobytes times ticks of execution, which
2331 indicates the amount of memory used by text that was shared with other
2332 processes.
2334 @item long int ru_idrss
2335 An integral value expressed the same way, which is the amount of
2336 unshared memory used in data.
2338 @item long int ru_isrss
2339 An integral value expressed the same way, which is the amount of
2340 unshared memory used in stack space.
2342 @item long int ru_minflt
2343 The number of page faults which were serviced without requiring any I/O.
2345 @item long int ru_majflt
2346 The number of page faults which were serviced by doing I/O.
2348 @item long int ru_nswap
2349 The number of times @var{processes} was swapped entirely out of main memory.
2351 @item long int ru_inblock
2352 The number of times the file system had to read from the disk on behalf
2353 of @var{processes}.
2355 @item long int ru_oublock
2356 The number of times the file system had to write to the disk on behalf
2357 of @var{processes}.
2359 @item long int ru_msgsnd
2360 Number of IPC messages sent.
2362 @item long ru_msgrcv
2363 Number of IPC messages received.
2365 @item long int ru_nsignals
2366 Number of signals received.
2368 @item long int ru_nvcsw
2369 The number of times @var{processes} voluntarily invoked a context switch
2370 (usually to wait for some service).
2372 @item long int ru_nivcsw
2373 The number of times an involuntary context switch took place (because
2374 the time slice expired, or another process of higher priority became
2375 runnable).
2376 @end table
2377 @end deftp
2379 An additional historical function for examining usage figures,
2380 @code{vtimes}, is supported but not documented here.  It is declared in
2381 @file{sys/vtimes.h}.
2383 @node Limits on Resources
2384 @section Limiting Resource Usage
2385 @cindex resource limits
2386 @cindex limits on resource usage
2387 @cindex usage limits
2389 You can specify limits for the resource usage of a process.  When the
2390 process tries to exceed a limit, it may get a signal, or the system call
2391 by which it tried to do so may fail, depending on the limit.  Each
2392 process initially inherits its limit values from its parent, but it can
2393 subsequently change them.
2395 @pindex sys/resource.h
2396 The symbols in this section are defined in @file{sys/resource.h}.
2398 @comment sys/resource.h
2399 @comment BSD
2400 @deftypefun int getrlimit (int @var{resource}, struct rlimit *@var{rlp})
2401 Read the current value and the maximum value of resource @var{resource}
2402 and store them in @code{*@var{rlp}}.
2404 The return value is @code{0} on success and @code{-1} on failure.  The
2405 only possible @code{errno} error condition is @code{EFAULT}.
2407 When the sources are compiled with @code{_FILE_OFFSET_BITS == 64} on a
2408 32 bits system this function is in fact @code{getrlimit64}.  I.e., the
2409 LFS interface transparently replaces the old interface.
2410 @end deftypefun
2412 @comment sys/resource.h
2413 @comment Unix98
2414 @deftypefun int getrlimit64 (int @var{resource}, struct rlimit64 *@var{rlp})
2415 This function is similar to the @code{getrlimit} but its second
2416 parameter is a pointer to a variable of type @code{struct rlimit64}
2417 which allows this function to read values which wouldn't fit in the
2418 member of a @code{struct rlimit}.
2420 If the sources are compiled with @code{_FILE_OFFSET_BITS == 64} on a 32
2421 bits machine this function is available under the name @code{getrlimit}
2422 and so transparently replaces the old interface.
2423 @end deftypefun
2425 @comment sys/resource.h
2426 @comment BSD
2427 @deftypefun int setrlimit (int @var{resource}, const struct rlimit *@var{rlp})
2428 Store the current value and the maximum value of resource @var{resource}
2429 in @code{*@var{rlp}}.
2431 The return value is @code{0} on success and @code{-1} on failure.  The
2432 following @code{errno} error condition is possible:
2434 @table @code
2435 @item EPERM
2436 You tried to change the maximum permissible limit value,
2437 but you don't have privileges to do so.
2438 @end table
2440 When the sources are compiled with @code{_FILE_OFFSET_BITS == 64} on a
2441 32 bits system this function is in fact @code{setrlimit64}.  I.e., the
2442 LFS interface transparently replaces the old interface.
2443 @end deftypefun
2445 @comment sys/resource.h
2446 @comment Unix98
2447 @deftypefun int setrlimit64 (int @var{resource}, const struct rlimit64 *@var{rlp})
2448 This function is similar to the @code{setrlimit} but its second
2449 parameter is a pointer to a variable of type @code{struct rlimit64}
2450 which allows this function to set values which wouldn't fit in the
2451 member of a @code{struct rlimit}.
2453 If the sources are compiled with @code{_FILE_OFFSET_BITS == 64} on a 32
2454 bits machine this function is available under the name @code{setrlimit}
2455 and so transparently replaces the old interface.
2456 @end deftypefun
2458 @comment sys/resource.h
2459 @comment BSD
2460 @deftp {Data Type} {struct rlimit}
2461 This structure is used with @code{getrlimit} to receive limit values,
2462 and with @code{setrlimit} to specify limit values.  It has two fields:
2464 @table @code
2465 @item rlim_t rlim_cur
2466 The current value of the limit in question.
2467 This is also called the ``soft limit''.
2468 @cindex soft limit
2470 @item rlim_t rlim_max
2471 The maximum permissible value of the limit in question.  You cannot set
2472 the current value of the limit to a larger number than this maximum.
2473 Only the super user can change the maximum permissible value.
2474 This is also called the ``hard limit''.
2475 @cindex hard limit
2476 @end table
2478 In @code{getrlimit}, the structure is an output; it receives the current
2479 values.  In @code{setrlimit}, it specifies the new values.
2480 @end deftp
2482 For the LFS functions a similar type is defined in @file{sys/resource.h}.
2484 @comment sys/resource.h
2485 @comment Unix98
2486 @deftp {Data Type} {struct rlimit64}
2487 This structure is used with @code{getrlimit64} to receive limit values,
2488 and with @code{setrlimit64} to specify limit values.  It has two fields:
2490 @table @code
2491 @item rlim64_t rlim_cur
2492 The current value of the limit in question.
2493 This is also called the ``soft limit''.
2495 @item rlim64_t rlim_max
2496 The maximum permissible value of the limit in question.  You cannot set
2497 the current value of the limit to a larger number than this maximum.
2498 Only the super user can change the maximum permissible value.
2499 This is also called the ``hard limit''.
2500 @end table
2502 In @code{getrlimit64}, the structure is an output; it receives the current
2503 values.  In @code{setrlimit64}, it specifies the new values.
2504 @end deftp
2506 Here is a list of resources that you can specify a limit for.
2507 Those that are sizes are measured in bytes.
2509 @table @code
2510 @comment sys/resource.h
2511 @comment BSD
2512 @item RLIMIT_CPU
2513 @vindex RLIMIT_CPU
2514 The maximum amount of cpu time the process can use.  If it runs for
2515 longer than this, it gets a signal: @code{SIGXCPU}.  The value is
2516 measured in seconds.  @xref{Operation Error Signals}.
2518 @comment sys/resource.h
2519 @comment BSD
2520 @item RLIMIT_FSIZE
2521 @vindex RLIMIT_FSIZE
2522 The maximum size of file the process can create.  Trying to write a
2523 larger file causes a signal: @code{SIGXFSZ}.  @xref{Operation Error
2524 Signals}.
2526 @comment sys/resource.h
2527 @comment BSD
2528 @item RLIMIT_DATA
2529 @vindex RLIMIT_DATA
2530 The maximum size of data memory for the process.  If the process tries
2531 to allocate data memory beyond this amount, the allocation function
2532 fails.
2534 @comment sys/resource.h
2535 @comment BSD
2536 @item RLIMIT_STACK
2537 @vindex RLIMIT_STACK
2538 The maximum stack size for the process.  If the process tries to extend
2539 its stack past this size, it gets a @code{SIGSEGV} signal.
2540 @xref{Program Error Signals}.
2542 @comment sys/resource.h
2543 @comment BSD
2544 @item RLIMIT_CORE
2545 @vindex RLIMIT_CORE
2546 The maximum size core file that this process can create.  If the process
2547 terminates and would dump a core file larger than this maximum size,
2548 then no core file is created.  So setting this limit to zero prevents
2549 core files from ever being created.
2551 @comment sys/resource.h
2552 @comment BSD
2553 @item RLIMIT_RSS
2554 @vindex RLIMIT_RSS
2555 The maximum amount of physical memory that this process should get.
2556 This parameter is a guide for the system's scheduler and memory
2557 allocator; the system may give the process more memory when there is a
2558 surplus.
2560 @comment sys/resource.h
2561 @comment BSD
2562 @item RLIMIT_MEMLOCK
2563 The maximum amount of memory that can be locked into physical memory (so
2564 it will never be paged out).
2566 @comment sys/resource.h
2567 @comment BSD
2568 @item RLIMIT_NPROC
2569 The maximum number of processes that can be created with the same user ID.
2570 If you have reached the limit for your user ID, @code{fork} will fail
2571 with @code{EAGAIN}.  @xref{Creating a Process}.
2573 @comment sys/resource.h
2574 @comment BSD
2575 @item RLIMIT_NOFILE
2576 @vindex RLIMIT_NOFILE
2577 @itemx RLIMIT_OFILE
2578 @vindex RLIMIT_OFILE
2579 The maximum number of files that the process can open.  If it tries to
2580 open more files than this, it gets error code @code{EMFILE}.
2581 @xref{Error Codes}.  Not all systems support this limit; GNU does, and
2582 4.4 BSD does.
2584 @comment sys/resource.h
2585 @comment Unix98
2586 @item RLIMIT_AS
2587 @vindex RLIMIT_AS
2588 The maximum size of total memory that this process should get.  If the
2589 process tries to allocate more memory beyond this amount with, for
2590 example, @code{brk}, @code{malloc}, @code{mmap} or @code{sbrk}, the
2591 allocation function fails.
2593 @comment sys/resource.h
2594 @comment BSD
2595 @item RLIM_NLIMITS
2596 @vindex RLIM_NLIMITS
2597 The number of different resource limits.  Any valid @var{resource}
2598 operand must be less than @code{RLIM_NLIMITS}.
2599 @end table
2601 @comment sys/resource.h
2602 @comment BSD
2603 @deftypevr Constant int RLIM_INFINITY
2604 This constant stands for a value of ``infinity'' when supplied as
2605 the limit value in @code{setrlimit}.
2606 @end deftypevr
2608 @c ??? Someone want to finish these?
2609 Two historical functions for setting resource limits, @code{ulimit} and
2610 @code{vlimit}, are not documented here.  The latter is declared in
2611 @file{sys/vlimit.h} and comes from BSD.
2613 @node Priority
2614 @section Process Priority
2615 @cindex process priority
2616 @cindex priority of a process
2618 @pindex sys/resource.h
2619 When several processes try to run, their respective priorities determine
2620 what share of the CPU each process gets.  This section describes how you
2621 can read and set the priority of a process.  All these functions and
2622 macros are declared in @file{sys/resource.h}.
2624 The range of valid priority values depends on the operating system, but
2625 typically it runs from @code{-20} to @code{20}.  A lower priority value
2626 means the process runs more often.  These constants describe the range of
2627 priority values:
2629 @table @code
2630 @comment sys/resource.h
2631 @comment BSD
2632 @item PRIO_MIN
2633 @vindex PRIO_MIN
2634 The smallest valid priority value.
2636 @comment sys/resource.h
2637 @comment BSD
2638 @item PRIO_MAX
2639 @vindex PRIO_MAX
2640 The largest valid priority value.
2641 @end table
2643 @comment sys/resource.h
2644 @comment BSD
2645 @deftypefun int getpriority (int @var{class}, int @var{id})
2646 Read the priority of a class of processes; @var{class} and @var{id}
2647 specify which ones (see below).  If the processes specified do not all
2648 have the same priority, this returns the smallest value that any of them
2649 has.
2651 The return value is the priority value on success, and @code{-1} on
2652 failure.  The following @code{errno} error condition are possible for
2653 this function:
2655 @table @code
2656 @item ESRCH
2657 The combination of @var{class} and @var{id} does not match any existing
2658 process.
2660 @item EINVAL
2661 The value of @var{class} is not valid.
2662 @end table
2664 When the return value is @code{-1}, it could indicate failure, or it
2665 could be the priority value.  The only way to make certain is to set
2666 @code{errno = 0} before calling @code{getpriority}, then use @code{errno
2667 != 0} afterward as the criterion for failure.
2668 @end deftypefun
2670 @comment sys/resource.h
2671 @comment BSD
2672 @deftypefun int setpriority (int @var{class}, int @var{id}, int @var{priority})
2673 Set the priority of a class of processes to @var{priority}; @var{class}
2674 and @var{id} specify which ones (see below).
2676 The return value is @code{0} on success and @code{-1} on failure.  The
2677 following @code{errno} error condition are defined for this function:
2679 @table @code
2680 @item ESRCH
2681 The combination of @var{class} and @var{id} does not match any existing
2682 process.
2684 @item EINVAL
2685 The value of @var{class} is not valid.
2687 @item EPERM
2688 You tried to set the priority of some other user's process, and you
2689 don't have privileges for that.
2691 @item EACCES
2692 You tried to lower the priority of a process, and you don't have
2693 privileges for that.
2694 @end table
2695 @end deftypefun
2697 The arguments @var{class} and @var{id} together specify a set of
2698 processes you are interested in.  These are the possible values for
2699 @var{class}:
2701 @table @code
2702 @comment sys/resource.h
2703 @comment BSD
2704 @item PRIO_PROCESS
2705 @vindex PRIO_PROCESS
2706 Read or set the priority of one process.  The argument @var{id} is a
2707 process ID.
2709 @comment sys/resource.h
2710 @comment BSD
2711 @item PRIO_PGRP
2712 @vindex PRIO_PGRP
2713 Read or set the priority of one process group.  The argument @var{id} is
2714 a process group ID.
2716 @comment sys/resource.h
2717 @comment BSD
2718 @item PRIO_USER
2719 @vindex PRIO_USER
2720 Read or set the priority of one user's processes.  The argument @var{id}
2721 is a user ID.
2722 @end table
2724 If the argument @var{id} is 0, it stands for the current process,
2725 current process group, or the current user, according to @var{class}.
2727 @c ??? I don't know where we should say this comes from.
2728 @comment Unix
2729 @comment dunno.h
2730 @deftypefun int nice (int @var{increment})
2731 Increment the priority of the current process by @var{increment}.
2732 The return value is the same as for @code{setpriority}.
2734 Here is an equivalent definition for @code{nice}:
2736 @smallexample
2738 nice (int increment)
2740   int old = getpriority (PRIO_PROCESS, 0);
2741   return setpriority (PRIO_PROCESS, 0, old + increment);
2743 @end smallexample
2744 @end deftypefun