built-riscv-gnu-toolchain/riscv32-unknown-elf/include/machine/time.h
jmug ce2d13d2a5 Push precompiled nix binaries
Signed-off-by: jmug <u.g.a.mariano@gmail.com>
2025-05-20 17:54:45 -07:00

15 lines
384 B
C

#ifndef _MACHTIME_H_
#define _MACHTIME_H_
#if defined(__rtems__) || defined(__VISIUM__) || defined(__riscv)
#define _CLOCKS_PER_SEC_ 1000000
#elif defined(__aarch64__) || defined(__arm__) || defined(__thumb__)
#define _CLOCKS_PER_SEC_ 100
#endif
#ifdef __SPU__
#include <sys/_timespec.h>
int nanosleep (const struct timespec *, struct timespec *);
#endif
#endif /* _MACHTIME_H_ */