You've already forked linux-apfs
mirror of
https://github.com/linux-apfs/linux-apfs.git
synced 2026-05-01 15:00:59 -07:00
11 lines
253 B
C
11 lines
253 B
C
|
|
#ifndef _ASM_X86_INTEL_PT_H
|
||
|
|
#define _ASM_X86_INTEL_PT_H
|
||
|
|
|
||
|
|
#if defined(CONFIG_PERF_EVENTS) && defined(CONFIG_CPU_SUP_INTEL)
|
||
|
|
void cpu_emergency_stop_pt(void);
|
||
|
|
#else
|
||
|
|
static inline void cpu_emergency_stop_pt(void) {}
|
||
|
|
#endif
|
||
|
|
|
||
|
|
#endif /* _ASM_X86_INTEL_PT_H */
|