LIKWID
power_types.h
1 /*
2  * =======================================================================================
3  *
4  * Filename: power_types.h
5  *
6  * Description: Types file for power module.
7  *
8  * Version: <VERSION>
9  * Released: <DATE>
10  *
11  * Author: Jan Treibig (jt), jan.treibig@gmail.com
12  * Thomas Roehl (tr), thomas.roehl@googlemail.com
13  * Project: likwid
14  *
15  * Copyright (C) 2016 RRZE, University Erlangen-Nuremberg
16  *
17  * This program is free software: you can redistribute it and/or modify it under
18  * the terms of the GNU General Public License as published by the Free Software
19  * Foundation, either version 3 of the License, or (at your option) any later
20  * version.
21  *
22  * This program is distributed in the hope that it will be useful, but WITHOUT ANY
23  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
24  * PARTICULAR PURPOSE. See the GNU General Public License for more details.
25  *
26  * You should have received a copy of the GNU General Public License along with
27  * this program. If not, see <http://www.gnu.org/licenses/>.
28  *
29  * =======================================================================================
30  */
31 #ifndef POWER_TYPES_H
32 #define POWER_TYPES_H
33 
34 #include <stdint.h>
35 #include <likwid.h>
36 
37 extern uint32_t power_regs[NUM_POWER_DOMAINS];
38 
39 #endif /*POWER_TYPES_H*/
#define NUM_POWER_DOMAINS
Definition: likwid.h:1115