home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.2 (Developer) / NS_dev_3.2.iso / NextDeveloper / Headers / bsd / sys / version.h < prev    next >
Text File  |  1993-10-19  |  2KB  |  49 lines

  1. /* 
  2.  * Mach Operating System
  3.  * Copyright (c) 1987 Carnegie-Mellon University
  4.  * All rights reserved.  The CMU software License Agreement specifies
  5.  * the terms and conditions for use and redistribution.
  6.  */
  7. /*
  8.  *    File:    sys/version.h
  9.  *
  10.  * HISTORY
  11.  * 29-Oct-86  Avadis Tevanian (avie) at Carnegie-Mellon University
  12.  *    Created.
  13.  */ 
  14.  
  15. /*
  16.  *    Each kernel has a major and minor version number.  Changes in
  17.  *    the major number in general indicate a change in exported features.
  18.  *    Changes in minor number usually correspond to internal-only
  19.  *    changes that the user need not be aware of (in general).  These
  20.  *    values are stored at boot time in the machine_info strucuture and
  21.  *    can be obtained by user programs with the host_info kernel call.
  22.  *    This mechanism is intended to be the formal way for Mach programs
  23.  *    to provide for backward compatibility in future releases.
  24.  *
  25.  *    Following is an informal history of the numbers:
  26.  *
  27.  *    03-Sep-91 Doug Mitchell
  28.  *        Major 3 for NeXT release 3.0.
  29.  *
  30.  *    04-Mar-90 Avadis Tevanian, Jr.
  31.  *        Major 2, minor 0 for NeXT release 2.0.
  32.  *
  33.  *    11-May-89 Avadis Tevanian, Jr.
  34.  *        Advance version to major 1, minor 0 to conform to NeXT
  35.  *        release 1.0.
  36.  *
  37.  *    05-December-88 Avadis Tevanian, Jr.
  38.  *        Aborted previous numbering, set major to 0, minor to 9
  39.  *        to conform to NeXT's 0.9 release.
  40.  *
  41.  *    25-March-87  Avadis Tevanian, Jr.
  42.  *        Created version numbering scheme.  Started with major 1,
  43.  *        minor 0.
  44.  */
  45.  
  46. #define KERNEL_MAJOR_VERSION    3
  47. #define KERNEL_MINOR_VERSION    0
  48.  
  49.