Remove powerpc, sparc fdim inlines (bug 22987).
[glibc.git] / nptl / pthread_getcpuclockid.c
blobe3517e88a4e2ca90ec3dd222a86d3d4bdc033b03
1 /* Copyright (C) 2000-2018 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 License as
6 published by the Free Software Foundation; either version 2.1 of the
7 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; see the file COPYING.LIB. If
16 not, see <http://www.gnu.org/licenses/>. */
18 #include <errno.h>
19 #include <pthreadP.h>
20 #include <sys/time.h>
21 #include <tls.h>
24 int
25 pthread_getcpuclockid (pthread_t threadid, clockid_t *clockid)
27 struct pthread *pd = (struct pthread *) threadid;
29 /* Make sure the descriptor is valid. */
30 if (INVALID_TD_P (pd))
31 /* Not a valid thread handle. */
32 return ESRCH;
34 #ifdef CLOCK_THREAD_CPUTIME_ID
35 /* We need to store the thread ID in the CLOCKID variable together
36 with a number identifying the clock. We reserve the low 3 bits
37 for the clock ID and the rest for the thread ID. This is
38 problematic if the thread ID is too large. But 29 bits should be
39 fine.
41 If some day more clock IDs are needed the ID part can be
42 enlarged. The IDs are entirely internal. */
43 if (pd->tid >= 1 << (8 * sizeof (*clockid) - CLOCK_IDFIELD_SIZE))
44 return ERANGE;
46 /* Store the number. */
47 *clockid = CLOCK_THREAD_CPUTIME_ID | (pd->tid << CLOCK_IDFIELD_SIZE);
49 return 0;
50 #else
51 /* We don't have a timer for that. */
52 return ENOENT;
53 #endif