source: rtems/cpukit/posix/src/clockgetcpuclockid.c @ 5c26b28b

4.104.114.84.95
Last change on this file since 5c26b28b was 188c82b, checked in by Joel Sherrill <joel.sherrill@…>, on 08/30/00 at 17:12:55

2000-08-30 Joel Sherrill <joel@…>

  • Many files: Moved posix/include/rtems/posix/seterr.h to score/include/rtems/seterr.h so it would be available within all APIs.
  • Property mode set to 100644
File size: 435 bytes
Line 
1/*
2 *  $Id$
3 */
4
5#include <assert.h>
6#include <time.h>
7#include <errno.h>
8
9#include <rtems/system.h>
10#include <rtems/score/isr.h>
11#include <rtems/score/thread.h>
12#include <rtems/score/tod.h>
13
14#include <rtems/seterr.h>
15#include <rtems/posix/time.h>
16
17/*PAGE
18 *
19 *  20.1.3 Accessing a Process CPU-time CLock, P1003.4b/D8, p. 55
20 */
21
22int clock_getcpuclockid(
23  pid_t      pid,
24  clockid_t *clock_id
25)
26{
27  return POSIX_NOT_IMPLEMENTED();
28}
Note: See TracBrowser for help on using the repository browser.