atom feed5 messages in org.freebsd.freebsd-mobileRe: Generating an NMI
FromSent OnAttachments
Warner LoshSep 26, 1998 9:43 pm 
Mike SmithSep 30, 1998 6:54 pm 
Warner LoshSep 30, 1998 8:59 pm 
Bill TrostOct 2, 1998 9:20 am 
Warner LoshOct 2, 1998 9:31 am 
Subject:Re: Generating an NMI
From:Bill Trost (tro@cloud.rain.com)
Date:Oct 2, 1998 9:20:18 am
List:org.freebsd.freebsd-mobile

Warner Losh writes: In message <1998@dingo.cdrom.com> Mike Smith writes: : Pull the machine apart, locate the NMI trace by following it off the : CPU, and install a switch in an appropriate place. You *may* find a : conveninent pad there already.

I'll have to give that a try. If I can find the pinouts and such for the chip.

Yoy! Is it not possible to set up some sort of watchdog timer instead?

watchdog() /* runs once a second */ { if (in_driver) { if (was_in_driver) panic(); was_in_driver = 1; } }

naughty_driver_routine() { in_driver = 1;

...the routine...

in_driver = was_in_driver = 0; }

To Unsubscribe: send mail to majo@FreeBSD.org with "unsubscribe freebsd-mobile" in the body of the message