Update copyright notices with scripts/update-copyrights.
[glibc.git] / sysdeps / unix / sysv / linux / times.c
blobf3b5f014e2de38770c07e6b7fecd2f858ca5f0b3
1 /* Copyright (C) 2008-2013 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
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.
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.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <http://www.gnu.org/licenses/>. */
18 #include <errno.h>
19 #include <sys/times.h>
20 #include <sysdep.h>
23 clock_t
24 __times (struct tms *buf)
26 INTERNAL_SYSCALL_DECL (err);
27 clock_t ret = INTERNAL_SYSCALL (times, err, 1, buf);
28 if (INTERNAL_SYSCALL_ERROR_P (ret, err)
29 && __builtin_expect (INTERNAL_SYSCALL_ERRNO (ret, err) == EFAULT, 0))
31 /* This might be an error or not. For architectures which have
32 no separate return value and error indicators we cannot
33 distinguish a return value of -1 from an error. Do it the
34 hard way. We crash applications which pass in an invalid BUF
35 pointer. */
36 #define touch(v) \
37 do { \
38 clock_t temp = v; \
39 asm volatile ("" : "+r" (temp)); \
40 v = temp; \
41 } while (0)
42 touch (buf->tms_utime);
43 touch (buf->tms_stime);
44 touch (buf->tms_cutime);
45 touch (buf->tms_cstime);
47 /* If we come here the memory is valid and the kernel did not
48 return an EFAULT error. Return the value given by the kernel. */
51 /* Return value (clock_t) -1 signals an error, but if there wasn't any,
52 return the following value. */
53 if (ret == (clock_t) -1)
54 return (clock_t) 0;
56 return ret;
58 weak_alias (__times, times)