2020-08-26 23:08:08 -07: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-06 21:39:00 -07:00
|
|
|
void OpPause(struct Machine *, uint32_t);
|
|
|
|
void OpRdtsc(struct Machine *, uint32_t);
|
|
|
|
void OpRdtscp(struct Machine *, uint32_t);
|
2020-10-29 04:53:20 -07:00
|
|
|
void OpRdpid(struct Machine *, uint32_t);
|
2020-08-26 23:08:08 -07:00
|
|
|
|
|
|
|
COSMOPOLITAN_C_END_
|
|
|
|
#endif /* !(__ASSEMBLER__ + __LINKER__ + 0) */
|
|
|
|
#endif /* COSMOPOLITAN_TOOL_BUILD_LIB_TIME_H_ */
|