mirror of
https://github.com/FEX-Emu/linux.git
synced 2025-01-14 13:39:10 +00:00
15 lines
280 B
C
15 lines
280 B
C
|
#ifndef __ASM_SPARC_PERF_EVENT_H
|
||
|
#define __ASM_SPARC_PERF_EVENT_H
|
||
|
|
||
|
extern void set_perf_event_pending(void);
|
||
|
|
||
|
#define PERF_EVENT_INDEX_OFFSET 0
|
||
|
|
||
|
#ifdef CONFIG_PERF_EVENTS
|
||
|
extern void init_hw_perf_events(void);
|
||
|
#else
|
||
|
static inline void init_hw_perf_events(void) { }
|
||
|
#endif
|
||
|
|
||
|
#endif
|