]>
git.saurik.com Git - apple/xnu.git/blob - osfmk/kern/startup.h
62cb3fa1c90c1b35ad22a20b9832cf59de33cb92
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved.
8 * This file contains Original Code and/or Modifications of Original Code
9 * as defined in and that are subject to the Apple Public Source License
10 * Version 2.0 (the 'License'). You may not use this file except in
11 * compliance with the License. Please obtain a copy of the License at
12 * http://www.opensource.apple.com/apsl/ and read it before using this
15 * The Original Code and all software distributed under the License are
16 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
17 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
18 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
20 * Please see the License for the specific language governing rights and
21 * limitations under the License.
23 * @APPLE_LICENSE_HEADER_END@
31 * Revision 1.1.1.1 1998/09/22 21:05:32 wsanchez
32 * Import of Mac OS X kernel (~semeria)
34 * Revision 1.1.1.1 1998/03/07 02:25:56 wsanchez
35 * Import of OSF Mach kernel (~mburg)
37 * Revision 1.1.7.1 1994/09/23 02:26:54 ezf
38 * change marker to not FREE
39 * [1994/09/22 21:36:18 ezf]
41 * Revision 1.1.2.3 1993/08/16 18:08:47 bernard
42 * Clean up MP configuration warnings - CR#9523
43 * [1993/08/13 15:29:52 bernard]
45 * Revision 1.1.2.2 1993/08/11 18:04:28 bernard
46 * Fixed to use machine include file ANSI prototypes - CR#9523
47 * [1993/08/11 16:28:27 bernard]
49 * Second pass fixes for ANSI prototypes - CR#9523
50 * [1993/08/11 14:20:54 bernard]
55 #ifndef _KERN_STARTUP_H_
56 #define _KERN_STARTUP_H_
61 * Kernel and machine startup declarations
64 /* Initialize kernel */
65 extern void setup_main(void);
67 /* Initialize machine dependent stuff */
68 extern void machine_init(void);
72 extern void slave_main(void);
75 * The following must be implemented in machine dependent code.
78 /* Slave cpu initialization */
79 extern void slave_machine_init(void);
81 /* Start slave processors */
82 extern void start_other_cpus(void);
84 #endif /* NCPUS > 1 */
85 #endif /* _KERN_STARTUP_H_ */