2015-07-15 05:09:55 +00:00
|
|
|
#ifndef _MACHTIME_H_
|
|
|
|
#define _MACHTIME_H_
|
|
|
|
|
2017-09-21 11:46:20 +00:00
|
|
|
#if defined(__rtems__) || defined(__VISIUM__) || defined(__riscv)
|
2017-04-13 03:52:05 +00:00
|
|
|
#define _CLOCKS_PER_SEC_ 1000000
|
|
|
|
#elif defined(__aarch64__) || defined(__arm__) || defined(__thumb__)
|
2015-07-15 05:09:55 +00:00
|
|
|
#define _CLOCKS_PER_SEC_ 100
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __SPU__
|
2017-04-13 03:52:05 +00:00
|
|
|
#include <sys/_timespec.h>
|
2015-07-15 05:09:55 +00:00
|
|
|
int nanosleep (const struct timespec *, struct timespec *);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* _MACHTIME_H_ */
|