2020-08-27 06:08:08 +00:00
|
|
|
#ifndef COSMOPOLITAN_TOOL_BUILD_LIB_TIME_H_
|
|
|
|
#define COSMOPOLITAN_TOOL_BUILD_LIB_TIME_H_
|
|
|
|
#include "tool/build/lib/machine.h"
|
|
|
|
#if !(__ASSEMBLER__ + __LINKER__ + 0)
|
|
|
|
COSMOPOLITAN_C_START_
|
|
|
|
|
2020-09-07 04:39:00 +00:00
|
|
|
void OpPause(struct Machine *, uint32_t);
|
|
|
|
void OpRdtsc(struct Machine *, uint32_t);
|
|
|
|
void OpRdtscp(struct Machine *, uint32_t);
|
2020-10-29 11:53:20 +00:00
|
|
|
void OpRdpid(struct Machine *, uint32_t);
|
2020-08-27 06:08:08 +00:00
|
|
|
|
|
|
|
COSMOPOLITAN_C_END_
|
|
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
|
|
#endif /* COSMOPOLITAN_TOOL_BUILD_LIB_TIME_H_ */
|