/*
- * Copyright (c) 2000-2005 Apple Computer, Inc. All rights reserved.
+ * Copyright (c) 2000-2007 Apple Inc. All rights reserved.
*
* @APPLE_OSREFERENCE_LICENSE_HEADER_START@
*
MP_RENDEZVOUS,
MP_IDLE,
MP_UNIDLE,
+ MP_CHUD,
+ MP_BROADCAST,
+ MP_CALL,
+ MP_CALL_PM,
MP_LAST
} mp_event_t;
"MP_RENDEZVOUS", \
"MP_IDLE", \
"MP_UNIDLE", \
+ "MP_CHUD", \
+ "MP_BROADCAST", \
+ "MP_CALL", \
+ "MP_CALL_PM", \
"MP_LAST" \
}
-
+
typedef enum { SYNC, ASYNC } mp_sync_t;
__BEGIN_DECLS
extern void i386_signal_cpu(int cpu, mp_event_t event, mp_sync_t mode);
extern void i386_signal_cpus(mp_event_t event, mp_sync_t mode);
extern int i386_active_cpus(void);
+extern void i386_activate_cpu(void);
+extern void i386_deactivate_cpu(void);
+extern void cpu_NMI_interrupt(int /* cpu */);
__END_DECLS