about summary refs log tree commit diff stats
path: root/src/include/my_cpuid.h
blob: a8c4dcecac643dea89129008e92717f1903fe137 (plain) (blame)
1
2
3
4
5
6
7
8
9
#ifndef __MY_CPUID_H__
#define __MY_CPUID_H__
#include <stdint.h>
typedef struct x64emu_s x64emu_t;

void my_cpuid(x64emu_t* emu, uint32_t tmp32u);
uint32_t helper_getcpu(x64emu_t* emu);  // get the numa/cpu id actually running

#endif //__MY_CPUID_H__