2013-12-15 09:09:20 +01:00
|
|
|
#ifndef _MACHTIME_H_
|
|
|
|
#define _MACHTIME_H_
|
|
|
|
|
2016-01-26 03:29:46 +01:00
|
|
|
#if defined(__rtems__) || defined(__VISIUM__)
|
|
|
|
#define _CLOCKS_PER_SEC_ 1000000
|
|
|
|
#elif defined(__aarch64__) || defined(__arm__) || defined(__thumb__)
|
2013-12-15 09:09:20 +01:00
|
|
|
#define _CLOCKS_PER_SEC_ 100
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef __SPU__
|
2016-01-26 03:29:46 +01:00
|
|
|
#include <sys/_timespec.h>
|
2013-12-15 09:09:20 +01:00
|
|
|
int nanosleep (const struct timespec *, struct timespec *);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* _MACHTIME_H_ */
|