home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.1 (Developer) [x86] / NeXT Step 3.1 Intel dev.cdr.dmg / NextDeveloper / Headers / bsd / i386 / reboot.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-04-30  |  854 b   |  27 lines

  1. /*
  2.  *    File:    next/reboot.h
  3.  *    Author:    Avadis Tevanian, Jr.
  4.  *
  5.  *    NeXT specific reboot flags.
  6.  *
  7.  * HISTORY
  8.  * 28-Feb-90  John Seamons (jks) at NeXT
  9.  *    Added RB_COMMAND flag that allows a specific reboot command to be used.
  10.  *
  11.  * 06-Jul-88  Avadis Tevanian (avie) at NeXT, Inc.
  12.  *    Created.
  13.  */
  14.  
  15. /*
  16.  *    Use most significant 16 bits to avoid collisions with
  17.  *    machine independent flags.
  18.  */
  19. #define RB_POWERDOWN    0x00010000    /* power down on halt */
  20. #define    RB_NOBOOTRC    0x00020000    /* don't run '/etc/rc.boot' */
  21. #define    RB_DEBUG    0x00040000    /* drop into mini monitor on panic */
  22. #define    RB_EJECT    0x00080000    /* eject disks on halt */
  23. #define    RB_COMMAND    0x00100000    /* new boot command specified */
  24. #define RB_NOFP        0x00200000    /* don't use floating point */
  25. #define RB_BOOTNEXT    0x00400000    /* reboot into NeXT */
  26. #define RB_BOOTDOS    0x00800000    /* reboot into DOS */
  27.