mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2025-01-08 04:50:51 +00:00
MAX_CPUS -> WITH_SMP.
This commit is contained in:
parent
75cfb4864d
commit
cdd7a784bd
@ -25,7 +25,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
|
||||
|
||||
/* Tracing support. */
|
||||
|
||||
#ifdef MAX_CPUS
|
||||
#if WITH_SMP
|
||||
|
||||
/* Return non-zero if tracing of IDX is enabled for CPU. */
|
||||
#define TRACE_P(cpu,idx) \
|
||||
@ -62,13 +62,13 @@ do { \
|
||||
trace_printf args; \
|
||||
} while (0)
|
||||
|
||||
#endif /* MAX_CPUS */
|
||||
#endif /* WITH_SMP */
|
||||
|
||||
extern void trace_printf PARAMS ((char *, ...));
|
||||
|
||||
/* Debug support. */
|
||||
|
||||
#ifdef MAX_CPUS
|
||||
#if WITH_SMP
|
||||
|
||||
/* Return non-zero if debugging of IDX for CPU is enabled. */
|
||||
#define DEBUG_P(cpu, idx) \
|
||||
@ -105,7 +105,7 @@ do { \
|
||||
debug_printf args; \
|
||||
} while (0)
|
||||
|
||||
#endif /* MAX_CPUS */
|
||||
#endif /* WITH_SMP */
|
||||
|
||||
extern void debug_printf PARAMS ((char *, ...));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user