URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [rtems-20020807/] [cpukit/] [posix/] [src/] [pthreadgetcpuclockid.c] - Rev 1026
Go to most recent revision | Compare with Previous | Blame | View Log
/* * 20.1.6 Accessing a Thread CPU-time Clock, P1003.4b/Draft 8, p. 58 * * COPYRIGHT (c) 1989-1999. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at * http://www.OARcorp.com/rtems/license.html. * * pthreadgetcpuclockid.c,v 1.4 2001/01/24 14:17:28 joel Exp */ #if HAVE_CONFIG_H #include "config.h" #endif #include <pthread.h> #include <errno.h> #include <rtems/system.h> int pthread_getcpuclockid( pthread_t pid, clockid_t *clock_id ) { return POSIX_NOT_IMPLEMENTED(); }
Go to most recent revision | Compare with Previous | Blame | View Log