2000-02-18 03:39:52 +08:00
|
|
|
#ifndef _MACHTIME_H_
|
|
|
|
#define _MACHTIME_H_
|
|
|
|
|
2015-03-04 05:53:55 +08:00
|
|
|
#if defined(__rtems__) || defined(__VISIUM__)
|
|
|
|
#define _CLOCKS_PER_SEC_ 1000000
|
2015-01-22 02:27:47 +08:00
|
|
|
#elif defined(__aarch64__) || defined(__arm__) || defined(__thumb__)
|
2000-02-18 03:39:52 +08:00
|
|
|
#define _CLOCKS_PER_SEC_ 100
|
|
|
|
#endif
|
|
|
|
|
2009-04-07 06:04:33 +08:00
|
|
|
#ifdef __SPU__
|
|
|
|
#include <sys/types.h>
|
|
|
|
int nanosleep (const struct timespec *, struct timespec *);
|
|
|
|
#endif
|
|
|
|
|
2000-02-18 03:39:52 +08:00
|
|
|
#endif /* _MACHTIME_H_ */
|