]>
git.saurik.com Git - apple/xnu.git/blob - bsd/sys/version.h
1847ed030c65c3a103de88c563aad528c31d31c8
2 * Copyright (c) 2004 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. Please obtain a copy of the License at
10 * http://www.opensource.apple.com/apsl/ and read it before using this
13 * The Original Code and all software distributed under the License are
14 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 * Please see the License for the specific language governing rights and
19 * limitations under the License.
21 * @APPLE_LICENSE_HEADER_END@
24 * Mach Operating System
25 * Copyright (c) 1987 Carnegie-Mellon University
26 * All rights reserved. The CMU software License Agreement specifies
27 * the terms and conditions for use and redistribution.
33 * 29-Oct-86 Avadis Tevanian (avie) at Carnegie-Mellon University
38 * Each kernel has a major and minor version number. Changes in
39 * the major number in general indicate a change in exported features.
40 * Changes in minor number usually correspond to internal-only
41 * changes that the user need not be aware of (in general). These
42 * values are stored at boot time in the machine_info strucuture and
43 * can be obtained by user programs with the host_info kernel call.
44 * This mechanism is intended to be the formal way for Mach programs
45 * to provide for backward compatibility in future releases.
47 * Following is an informal history of the numbers:
49 * 20-Mar-1998 Umesh Vaishampayan
53 * NEXTSTEP Release 4.0.
55 * 03-Sep-91 Doug Mitchell
56 * Major 3 for NeXT release 3.0.
58 * 04-Mar-90 Avadis Tevanian, Jr.
59 * Major 2, minor 0 for NeXT release 2.0.
61 * 11-May-89 Avadis Tevanian, Jr.
62 * Advance version to major 1, minor 0 to conform to NeXT
65 * 05-December-88 Avadis Tevanian, Jr.
66 * Aborted previous numbering, set major to 0, minor to 9
67 * to conform to NeXT's 0.9 release.
69 * 25-March-87 Avadis Tevanian, Jr.
70 * Created version numbering scheme. Started with major 1,
73 #ifndef _SYS_VERSION_H_
74 #define _SYS_VERSION_H_
76 #define KERNEL_MAJOR_VERSION 10
77 #define KERNEL_MINOR_VERSION 0
79 #endif /* ! _SYS_VERSION_H_ */