mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-02-10 11:09:25 +08:00
* COPYING.NEWLIB: Likewise. libgloss/ * configure.in: Add Visium support. * configure: Regenerate. * visium/: New directory. newlib/ * configure.host: Add Visium support. * libc/machine/configure.in: Likewise. * libc/machine/configure: Regenerate. * libc/machine/visium/: New directory. * libc/include/machine/setjmp.h (_JBLEN): Define for Visium. * libc/include/machine/ieeefp.h (__IEEE_BIG_ENDIAN): Likewise. * libc/include/machine/time.h (_CLOCKS_PER_SEC_): Likewise.
18 lines
411 B
C
18 lines
411 B
C
#ifndef _MACHTIME_H_
|
|
#define _MACHTIME_H_
|
|
|
|
#if defined(__rtems__)
|
|
#define _CLOCKS_PER_SEC_ sysconf(_SC_CLK_TCK)
|
|
#elif defined(__aarch64__) || defined(__arm__) || defined(__thumb__)
|
|
#define _CLOCKS_PER_SEC_ 100
|
|
#elif defined (__VISIUM__)
|
|
#define _CLOCKS_PER_SEC_ 1000000
|
|
#endif
|
|
|
|
#ifdef __SPU__
|
|
#include <sys/types.h>
|
|
int nanosleep (const struct timespec *, struct timespec *);
|
|
#endif
|
|
|
|
#endif /* _MACHTIME_H_ */
|