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

Annotation of sys/arch/mvmeppc/stand/libbug/return.c, Revision 1.1

1.1     ! nbrk        1: /*     $OpenBSD: return.c,v 1.3 2004/01/24 21:12:38 miod Exp $ */
        !             2:
        !             3: /*
        !             4:  * bug routines -- assumes that the necessary sections of memory
        !             5:  * are preserved.
        !             6:  */
        !             7: #include <sys/types.h>
        !             8:
        !             9: #include "libbug.h"
        !            10:
        !            11: /* BUG - return to bug routine */
        !            12: void
        !            13: mvmeprom_return()
        !            14: {
        !            15:        MVMEPROM_CALL(MVMEPROM_RETURN);
        !            16:        /*NOTREACHED*/
        !            17: }
        !            18:
        !            19: /* BUG - return to bug routine */
        !            20: __dead void
        !            21: _rtt()
        !            22: {
        !            23:        MVMEPROM_CALL(MVMEPROM_RETURN);
        !            24:        printf("_rtt: exit failed.  spinning...");
        !            25:        while (1) ;
        !            26:        /*NOTREACHED*/
        !            27: }

CVSweb