Date: Fri, 02 Oct 1998 09:20:39 -0700 From: Bill Trost <trost@cloud.rain.com> To: Warner Losh <imp@village.org> Cc: mobile@FreeBSD.ORG Subject: Re: Generating an NMI Message-ID: <26712.907345239@cloud.rain.com> In-Reply-To: Your message of Wed, 30 Sep 1998 21:59:34 MDT. <199810010359.VAA04857@harmony.village.org> References: <199810010359.VAA04857@harmony.village.org> <199810010155.SAA05006@dingo.cdrom.com>
next in thread | previous in thread | raw e-mail | index | archive | help
Warner Losh writes:
In message <199810010155.SAA05006@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 majordomo@FreeBSD.org
with "unsubscribe freebsd-mobile" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?26712.907345239>
