PhoenixHardware  0.2.0
Tools to get hardware information
Loading...
Searching...
No Matches
phoenix_hardware_rdtsc.h
Go to the documentation of this file.
1/***************************************
2 Auteur : Pierre Aubert
3 Mail : pierre.aubert@lapp.in2p3.fr
4 Licence : CeCILL-C
5****************************************/
6
7#ifndef __PHOENIX_HARDWARE_RDTSC_H__
8#define __PHOENIX_HARDWARE_RDTSC_H__
9
10#ifdef __i386
11extern long unsigned int phoenix_hardware_rdtsc(void);
12#elif defined __amd64
13extern long unsigned int phoenix_hardware_rdtsc(void);
14#endif
15
16#endif
17