home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / tools / developer-tools / aros / source / exec / kernel / src / coldreboot.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-16  |  1.1 KB  |  65 lines

  1. /*
  2.     (C) 1995 AROS - The Amiga Replacement OS
  3.     $Id: coldreboot.c 1.1 1995/11/14 22:12:08 digulla Exp digulla $
  4.     $Log: coldreboot.c $
  5.  * Revision 1.1  1995/11/14  22:12:08  digulla
  6.  * Initial revision
  7.  *
  8.     Desc: Reboot the machine.
  9.     Lang: english
  10. */
  11. #include "exec_intern.h"
  12.  
  13. /*****************************************************************************
  14.  
  15.     NAME */
  16.     #include <clib/exec_protos.h>
  17.  
  18.     __AROS_LH0(void, ColdReboot,
  19.  
  20. /*  SYNOPSIS */
  21.     /* void */
  22.  
  23. /*  LOCATION */
  24.     struct ExecBase *, SysBase, 121, Exec)
  25.  
  26. /*  FUNCTION
  27.     Reboot the machine, RESET all peripherals and start anew.
  28.  
  29.     This function never returns.
  30.  
  31.     INPUTS
  32.     None.
  33.  
  34.     RESULT
  35.     None.
  36.  
  37.     NOTES
  38.     With AROS, this function just initalizes the system and
  39.     does not reboot (yet).
  40.  
  41.     EXAMPLE
  42.  
  43.     BUGS
  44.  
  45.     SEE ALSO
  46.  
  47.     INTERNALS
  48.  
  49.     HISTORY
  50.     21-10-95    digulla automatically created from
  51.                 include:clib/exec_protos.h
  52.     26-10-95    digulla initialize ExecBase
  53.  
  54. *****************************************************************************/
  55. {
  56.     __AROS_FUNC_INIT
  57.  
  58. #   if UseLVOs
  59.     __AROS_InitExecBase ();
  60. #   endif
  61.  
  62.     __AROS_FUNC_EXIT
  63. } /* ColdReboot */
  64.  
  65.