diff options
author | Suren A. Chilingaryan <csa@suren.me> | 2015-11-17 18:23:48 +0100 |
---|---|---|
committer | Suren A. Chilingaryan <csa@suren.me> | 2015-11-17 18:23:48 +0100 |
commit | 52e32b2c9f0e5ac7cfb31fd2306e6536340955e1 (patch) | |
tree | 720e376325d14f6713df434e031c503ba8f33c1e /pcilib/cpu.h | |
parent | 2455a677448e0e0c17d7193bf405b734b758811b (diff) | |
download | pcitool-52e32b2c9f0e5ac7cfb31fd2306e6536340955e1.tar.gz pcitool-52e32b2c9f0e5ac7cfb31fd2306e6536340955e1.tar.bz2 pcitool-52e32b2c9f0e5ac7cfb31fd2306e6536340955e1.tar.xz pcitool-52e32b2c9f0e5ac7cfb31fd2306e6536340955e1.zip |
Support for 64-bit registes
Diffstat (limited to 'pcilib/cpu.h')
-rw-r--r-- | pcilib/cpu.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/pcilib/cpu.h b/pcilib/cpu.h new file mode 100644 index 0000000..2b3ed80 --- /dev/null +++ b/pcilib/cpu.h @@ -0,0 +1,17 @@ +#ifndef _PCILIB_CPU_H +#define _PCILIB_CPU_H + +#ifdef __cplusplus +extern "C" { +#endif + +int pcilib_get_page_mask(); +int pcilib_get_cpu_count(); +int pcilib_get_cpu_gen(); + +#ifdef __cplusplus +} +#endif + + +#endif /* _PCILIB_CPU_H */ |