2015-02-25 Gedare Bloom <gedare@rtems.org>

* libc/include/machine/time.h (_CLOCKS_PER_SEC_): redefine for RTEMS.
This commit is contained in:
Joel Sherrill 2015-03-03 21:53:55 +00:00
parent bc860c9894
commit 2387583ee2
2 changed files with 6 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2015-02-25 Gedare Bloom <gedare@rtems.org>
* libc/include/machine/time.h (_CLOCKS_PER_SEC_): redefine for RTEMS.
2015-03-03 Steve Ellcey <sellcey@imgtec.com>
* libc/machine/mips/memset.S: Add support for mips32r6/mips64r6.

View File

@ -1,12 +1,10 @@
#ifndef _MACHTIME_H_
#define _MACHTIME_H_
#if defined(__rtems__)
#define _CLOCKS_PER_SEC_ sysconf(_SC_CLK_TCK)
#if defined(__rtems__) || defined(__VISIUM__)
#define _CLOCKS_PER_SEC_ 1000000
#elif defined(__aarch64__) || defined(__arm__) || defined(__thumb__)
#define _CLOCKS_PER_SEC_ 100
#elif defined (__VISIUM__)
#define _CLOCKS_PER_SEC_ 1000000
#endif
#ifdef __SPU__