smp.h (8ee0110a449904883ddcc5dea6f61a690bab1d5a) | smp.h (9a3b3e8bce8e8c8bbec663229e16bebb3cfc5d53) |
---|---|
1/* 2 * ---------------------------------------------------------------------------- 3 * "THE BEER-WARE LICENSE" (Revision 42): 4 * <phk@FreeBSD.org> wrote this file. As long as you retain this notice you 5 * can do whatever you want with this stuff. If we meet some day, and you think 6 * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp 7 * ---------------------------------------------------------------------------- 8 * | 1/* 2 * ---------------------------------------------------------------------------- 3 * "THE BEER-WARE LICENSE" (Revision 42): 4 * <phk@FreeBSD.org> wrote this file. As long as you retain this notice you 5 * can do whatever you want with this stuff. If we meet some day, and you think 6 * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp 7 * ---------------------------------------------------------------------------- 8 * |
9 * $Id: smp.h,v 1.24 1997/08/24 20:17:05 smp Exp smp $ | 9 * $Id: smp.h,v 1.29 1997/08/24 20:33:24 fsmp Exp $ |
10 * 11 */ 12 13#ifndef _MACHINE_SMP_H_ 14#define _MACHINE_SMP_H_ 15 16#ifdef KERNEL 17 --- 77 unchanged lines hidden (view full) --- 95extern vm_offset_t cpu_apic_address; 96extern vm_offset_t io_apic_address[]; 97extern u_int32_t cpu_apic_versions[]; 98extern u_int32_t io_apic_versions[]; 99extern int cpu_num_to_apic_id[]; 100extern int io_num_to_apic_id[]; 101extern int apic_id_to_logical[]; 102extern u_int all_cpus; | 10 * 11 */ 12 13#ifndef _MACHINE_SMP_H_ 14#define _MACHINE_SMP_H_ 15 16#ifdef KERNEL 17 --- 77 unchanged lines hidden (view full) --- 95extern vm_offset_t cpu_apic_address; 96extern vm_offset_t io_apic_address[]; 97extern u_int32_t cpu_apic_versions[]; 98extern u_int32_t io_apic_versions[]; 99extern int cpu_num_to_apic_id[]; 100extern int io_num_to_apic_id[]; 101extern int apic_id_to_logical[]; 102extern u_int all_cpus; |
103extern u_int SMP_prvpt[]; | |
104extern u_char SMP_ioapic[]; 105 106/* functions in mp_machdep.c */ 107u_int mp_bootaddress __P((u_int)); 108int mp_probe __P((void)); 109void mp_start __P((void)); 110void mp_announce __P((void)); 111u_int isa_apic_mask __P((u_int)); --- 57 unchanged lines hidden --- | 103extern u_char SMP_ioapic[]; 104 105/* functions in mp_machdep.c */ 106u_int mp_bootaddress __P((u_int)); 107int mp_probe __P((void)); 108void mp_start __P((void)); 109void mp_announce __P((void)); 110u_int isa_apic_mask __P((u_int)); --- 57 unchanged lines hidden --- |