10 lines
128 B
Go
10 lines
128 B
Go
//go:build !amd64 && !arm64
|
|
|
|
package rdtsc
|
|
|
|
const SupportRDTSC = false
|
|
|
|
func GetCPUTimeStamp() uint64 {
|
|
panic("unsupported")
|
|
}
|