smp.h (cbd59a4f658ff44ebe2aab164cc6f830f8dfcd62) | smp.h (999987e51a2db77e5407c5a2cdb5d759b1317714) |
---|---|
1/*- 2 * Copyright (c) 2008 Marcel Moolenaar 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * --- 34 unchanged lines hidden (view full) --- 43void ipi_selected(cpumask_t cpus, int ipi); 44 45struct cpuref { 46 uintptr_t cr_hwref; 47 u_int cr_cpuid; 48}; 49 50void pmap_cpu_bootstrap(int); | 1/*- 2 * Copyright (c) 2008 Marcel Moolenaar 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * --- 34 unchanged lines hidden (view full) --- 43void ipi_selected(cpumask_t cpus, int ipi); 44 45struct cpuref { 46 uintptr_t cr_hwref; 47 u_int cr_cpuid; 48}; 49 50void pmap_cpu_bootstrap(int); |
51uint32_t cpudep_ap_bootstrap(void); | 51uintptr_t cpudep_ap_bootstrap(void); 52void cpudep_ap_setup(void); |
52void machdep_ap_bootstrap(void); 53 54#endif /* !LOCORE */ 55#endif /* _KERNEL */ 56#endif /* !_MACHINE_SMP_H */ | 53void machdep_ap_bootstrap(void); 54 55#endif /* !LOCORE */ 56#endif /* _KERNEL */ 57#endif /* !_MACHINE_SMP_H */ |