]> git.saurik.com Git - apple/xnu.git/blob - bsd/sys/version.h
ab489356ac01daa239a0ad3544bd2e0aa28197f6
[apple/xnu.git] / bsd / sys / version.h
1 /*
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
6 * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved.
7 *
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
13 * file.
14 *
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.
22 *
23 * @APPLE_LICENSE_HEADER_END@
24 */
25 /*
26 * Mach Operating System
27 * Copyright (c) 1987 Carnegie-Mellon University
28 * All rights reserved. The CMU software License Agreement specifies
29 * the terms and conditions for use and redistribution.
30 */
31 /*
32 * File: sys/version.h
33 *
34 * HISTORY
35 * 29-Oct-86 Avadis Tevanian (avie) at Carnegie-Mellon University
36 * Created.
37 */
38
39 /*
40 * Each kernel has a major and minor version number. Changes in
41 * the major number in general indicate a change in exported features.
42 * Changes in minor number usually correspond to internal-only
43 * changes that the user need not be aware of (in general). These
44 * values are stored at boot time in the machine_info strucuture and
45 * can be obtained by user programs with the host_info kernel call.
46 * This mechanism is intended to be the formal way for Mach programs
47 * to provide for backward compatibility in future releases.
48 *
49 * Following is an informal history of the numbers:
50 *
51 * 20-Mar-1998 Umesh Vaishampayan
52 * MacOSX DR2
53 *
54 * 28-Sep-94 ?
55 * NEXTSTEP Release 4.0.
56 *
57 * 03-Sep-91 Doug Mitchell
58 * Major 3 for NeXT release 3.0.
59 *
60 * 04-Mar-90 Avadis Tevanian, Jr.
61 * Major 2, minor 0 for NeXT release 2.0.
62 *
63 * 11-May-89 Avadis Tevanian, Jr.
64 * Advance version to major 1, minor 0 to conform to NeXT
65 * release 1.0.
66 *
67 * 05-December-88 Avadis Tevanian, Jr.
68 * Aborted previous numbering, set major to 0, minor to 9
69 * to conform to NeXT's 0.9 release.
70 *
71 * 25-March-87 Avadis Tevanian, Jr.
72 * Created version numbering scheme. Started with major 1,
73 * minor 0.
74 */
75 #ifndef _SYS_VERSION_H_
76 #define _SYS_VERSION_H_
77
78 #define KERNEL_MAJOR_VERSION 10
79 #define KERNEL_MINOR_VERSION 0
80
81 #endif /* ! _SYS_VERSION_H_ */