update nearly all FSF copyright year lists to include 2010
[gnulib.git] / lib / sys_times.in.h
1 /* Provide a sys/times.h header file.
2    Copyright (C) 2008-2010 Free Software Foundation, Inc.
3
4    This program is free software; you can redistribute it and/or modify
5    it under the terms of the GNU General Public License as published by
6    the Free Software Foundation; either version 2, or (at your option)
7    any later version.
8
9    This program is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12    GNU General Public License for more details.
13
14    You should have received a copy of the GNU General Public License
15    along with this program; if not, write to the Free Software Foundation,
16    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
17
18 /* Written by Simon Josefsson <simon@josefsson.org>, 2008.  */
19
20 /* This file is supposed to be used on platforms where <sys/times.h>
21    is missing.  */
22
23 #ifndef _GL_SYS_TIMES_H
24
25 # if __GNUC__ >= 3
26 @PRAGMA_SYSTEM_HEADER@
27 # endif
28
29 # if @HAVE_SYS_TIMES_H@
30 #  @INCLUDE_NEXT@ @NEXT_SYS_TIMES_H@
31 # endif
32
33 # define _GL_SYS_TIMES_H
34
35 /* Get clock_t.
36    But avoid namespace pollution on glibc systems.  */
37 # ifndef __GLIBC__
38 #  include <time.h>
39 # endif
40
41 /* The definition of GL_LINK_WARNING is copied here.  */
42
43 /* The definition of _GL_ARG_NONNULL is copied here.  */
44
45 # ifdef __cplusplus
46 extern "C" {
47 # endif
48
49 # if !@HAVE_STRUCT_TMS@
50   /* Structure describing CPU time used by a process and its children.  */
51   struct tms
52   {
53     clock_t tms_utime;          /* User CPU time.  */
54     clock_t tms_stime;          /* System CPU time.  */
55
56     clock_t tms_cutime;         /* User CPU time of dead children.  */
57     clock_t tms_cstime;         /* System CPU time of dead children.  */
58   };
59 # endif
60
61 # if @GNULIB_TIMES@
62 #  if !@HAVE_TIMES@
63   extern clock_t times (struct tms *buffer) _GL_ARG_NONNULL ((1));
64 #  endif
65 # elif defined GNULIB_POSIXCHECK
66 #  undef times
67 #  define times(s)                                              \
68   (GL_LINK_WARNING ("times is unportable - "                    \
69                     "use gnulib module times for portability"), \
70    times (s))
71 # endif
72
73 # ifdef __cplusplus
74 }
75 # endif
76
77 #endif                          /* _GL_SYS_TIMES_H */