Blame rt/clock_getcpuclockid.c

Packit Bot 0c2104
/* Get a clockid_t for the process CPU clock of a given process.  Generic.
Packit Bot 0c2104
   Copyright (C) 2000-2018 Free Software Foundation, Inc.
Packit Service 871db4
   This file is part of the GNU C Library.
Packit Service 871db4
Packit Service 871db4
   The GNU C Library is free software; you can redistribute it and/or
Packit Service 871db4
   modify it under the terms of the GNU Lesser General Public
Packit Service 871db4
   License as published by the Free Software Foundation; either
Packit Service 871db4
   version 2.1 of the License, or (at your option) any later version.
Packit Service 871db4
Packit Service 871db4
   The GNU C Library is distributed in the hope that it will be useful,
Packit Service 871db4
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit Service 871db4
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit Service 871db4
   Lesser General Public License for more details.
Packit Service 871db4
Packit Service 871db4
   You should have received a copy of the GNU Lesser General Public
Packit Service 871db4
   License along with the GNU C Library; if not, see
Packit Service 871db4
   <http://www.gnu.org/licenses/>.  */
Packit Service 871db4
Packit Bot 0c2104
#include <errno.h>
Packit Bot 0c2104
#include <time.h>
Packit Bot 0c2104
#include <unistd.h>
Packit Service 871db4
Packit Service 871db4
int
Packit Bot 0c2104
__clock_getcpuclockid (pid_t pid, clockid_t *clock_id)
Packit Service 871db4
{
Packit Bot 0c2104
  /* We don't allow any process ID but our own.  */
Packit Bot 0c2104
  if (pid != 0 && pid != getpid ())
Packit Bot 0c2104
    return EPERM;
Packit Bot 0c2104
Packit Bot 0c2104
#ifdef CLOCK_PROCESS_CPUTIME_ID
Packit Bot 0c2104
  /* Store the number.  */
Packit Bot 0c2104
  *clock_id = CLOCK_PROCESS_CPUTIME_ID;
Packit Service 871db4
Packit Service 871db4
  return 0;
Packit Bot 0c2104
#else
Packit Bot 0c2104
  /* We don't have a timer for that.  */
Packit Bot 0c2104
  return ENOENT;
Packit Bot 0c2104
#endif
Packit Service 871db4
}
Packit Bot 0c2104
weak_alias (__clock_getcpuclockid, clock_getcpuclockid)