URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [rtems-20020807/] [cpukit/] [posix/] [src/] [clockgetcpuclockid.c] - Rev 1774
Go to most recent revision | Compare with Previous | Blame | View Log
/* * clockgetcpuclockid.c,v 1.3 2001/01/24 14:17:28 joel Exp */ #if HAVE_CONFIG_H #include "config.h" #endif #include <assert.h> #include <time.h> #include <errno.h> #include <rtems/system.h> #include <rtems/score/isr.h> #include <rtems/score/thread.h> #include <rtems/score/tod.h> #include <rtems/seterr.h> #include <rtems/posix/time.h> /*PAGE * * 20.1.3 Accessing a Process CPU-time CLock, P1003.4b/D8, p. 55 */ int clock_getcpuclockid( pid_t pid, clockid_t *clock_id ) { return POSIX_NOT_IMPLEMENTED(); }
Go to most recent revision | Compare with Previous | Blame | View Log