chiark / gitweb /
eglibc (2.11.3-4+deb6u3) squeeze-lts; urgency=medium
[eglibc.git] / sysdeps / unix / sysv / linux / times.c
1 /* Copyright (C) 2008 Free Software Foundation, Inc.
2    This file is part of the GNU C Library.
3
4    The GNU C Library is free software; you can redistribute it and/or
5    modify it under the terms of the GNU Lesser General Public
6    License as published by the Free Software Foundation; either
7    version 2.1 of the License, or (at your option) any later version.
8
9    The GNU C Library 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 GNU
12    Lesser General Public License for more details.
13
14    You should have received a copy of the GNU Lesser General Public
15    License along with the GNU C Library; if not, write to the Free
16    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
17    02111-1307 USA.  */
18
19 #include <errno.h>
20 #include <sys/times.h>
21 #include <sysdep.h>
22
23
24 clock_t
25 __times (struct tms *buf)
26 {
27   INTERNAL_SYSCALL_DECL (err);
28   clock_t ret = INTERNAL_SYSCALL (times, err, 1, buf);
29   if (INTERNAL_SYSCALL_ERROR_P (ret, err)
30       && __builtin_expect (INTERNAL_SYSCALL_ERRNO (ret, err) == EFAULT, 0))
31     {
32       /* This might be an error or not.  For architectures which have
33          no separate return value and error indicators we cannot
34          distinguish a return value of -1 from an error.  Do it the
35          hard way.  We crash applications which pass in an invalid BUF
36          pointer.  */
37 #define touch(v) \
38       do {                                                                    \
39         clock_t temp = v;                                                     \
40         asm volatile ("" : "+r" (temp));                                      \
41         v = temp;                                                             \
42       } while (0)
43       touch (buf->tms_utime);
44       touch (buf->tms_stime);
45       touch (buf->tms_cutime);
46       touch (buf->tms_cstime);
47
48       /* If we come here the memory is valid and the kernel did not
49          return an EFAULT error.  Return the value given by the kernel.  */
50     }
51
52   /* Return value (clock_t) -1 signals an error, but if there wasn't any,
53      return the following value.  */
54   if (ret == (clock_t) -1)
55     return (clock_t) 0;
56
57   return ret;
58 }
59 weak_alias (__times, times)