[BACK]Return to return.c CVS log [TXT][DIR] Up to [local] / sys / arch / mvme88k / stand / libbug

Annotation of sys/arch/mvme88k/stand/libbug/return.c, Revision 1.1.1.1

1.1       nbrk        1: /*     $OpenBSD: return.c,v 1.4 2006/05/16 22:51:30 miod Exp $ */
                      2:
                      3: /*
                      4:  * bug routines -- assumes that the necessary sections of memory
                      5:  * are preserved.
                      6:  */
                      7: #include <sys/types.h>
                      8: #include <machine/prom.h>
                      9: #include "stand.h"
                     10: #include "prom.h"
                     11:
                     12: /* BUG - return to bug routine */
                     13: __dead void
                     14: _rtt()
                     15: {
                     16:        MVMEPROM_CALL(MVMEPROM_EXIT);
                     17:        printf("_rtt: exit failed.  spinning...");
                     18:        while (1) ;
                     19:        /*NOTREACHED*/
                     20: }

CVSweb