Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@oarcorp.com>2015-03-04 00:53:55 +0300
committerJoel Sherrill <joel.sherrill@oarcorp.com>2015-03-04 00:53:55 +0300
commit2387583ee266cd54df01e42234d0d348bebaf510 (patch)
treed04984f71340d5e101d0cbbe0bf4127891875b01 /newlib/libc
parentbc860c9894f8b686581b40e9bc08e8bff1417c3f (diff)
2015-02-25 Gedare Bloom <gedare@rtems.org>
* libc/include/machine/time.h (_CLOCKS_PER_SEC_): redefine for RTEMS.
Diffstat (limited to 'newlib/libc')
-rw-r--r--newlib/libc/include/machine/time.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/newlib/libc/include/machine/time.h b/newlib/libc/include/machine/time.h
index 3057c817d..9b44941d6 100644
--- a/newlib/libc/include/machine/time.h
+++ b/newlib/libc/include/machine/time.h
@@ -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__