2010-06-29 00:07:49 +02:00
|
|
|
#ifndef PERF_H
|
|
|
|
#define PERF_H
|
|
|
|
|
|
|
|
/* This header file defines all performance-related constants and macros. */
|
|
|
|
|
|
|
|
/* Enable copy-on-write optimization for safecopy. */
|
|
|
|
#define PERF_USE_COW_SAFECOPY 0
|
|
|
|
|
|
|
|
/* Use a private page table for critical system processes. */
|
2010-09-15 16:11:30 +02:00
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
#define PERF_SYS_CORE_FULLVM 1
|
|
|
|
#else
|
2010-06-29 00:07:49 +02:00
|
|
|
#define PERF_SYS_CORE_FULLVM 0
|
2010-09-15 16:11:30 +02:00
|
|
|
#endif
|
2010-06-29 00:07:49 +02:00
|
|
|
|
|
|
|
#endif /* PERF_H */
|