clock_getcpuclockid.c 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /* clock_getcpuclockid -- Get a clockid_t for process CPU time. Linux version.
  2. Copyright (C) 2004-2019 Free Software Foundation, Inc.
  3. 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.
  8. The GNU C Library is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  11. Lesser General Public License for more details.
  12. You should have received a copy of the GNU Lesser General Public
  13. License along with the GNU C Library; if not, see
  14. <http://www.gnu.org/licenses/>. */
  15. #include <errno.h>
  16. #include <time.h>
  17. #include <unistd.h>
  18. #include "kernel-posix-cpu-timers.h"
  19. int
  20. __clock_getcpuclockid (pid_t pid, clockid_t *clock_id)
  21. {
  22. /* The clockid_t value is a simple computation from the PID.
  23. But we do a clock_getres call to validate it. */
  24. const clockid_t pidclock = MAKE_PROCESS_CPUCLOCK (pid, CPUCLOCK_SCHED);
  25. INTERNAL_SYSCALL_DECL (err);
  26. int r = INTERNAL_SYSCALL (clock_getres, err, 2, pidclock, NULL);
  27. if (!INTERNAL_SYSCALL_ERROR_P (r, err))
  28. {
  29. *clock_id = pidclock;
  30. return 0;
  31. }
  32. if (INTERNAL_SYSCALL_ERRNO (r, err) == EINVAL)
  33. {
  34. /* The clock_getres system call checked the PID for us. */
  35. return ESRCH;
  36. }
  37. else
  38. return INTERNAL_SYSCALL_ERRNO (r, err);
  39. }
  40. weak_alias (__clock_getcpuclockid, clock_getcpuclockid)