Xref: utzoo comp.unix.sysv386:8834 comp.unix.internals:2986 comp.unix.wizards:25917 Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!wuarchive!uunet!bria!mike From: mike@bria.UUCP (mike.stefanik) Newsgroups: comp.unix.sysv386,comp.unix.internals,comp.unix.wizards Subject: Re: Timeout table overflow in ISC 2.0.2 Message-ID: <281@bria.UUCP> Date: 9 Jun 91 03:47:52 GMT References: <1991Jun7.102033.12203@cs.tcd.ie> Reply-To: uunet!bria!mike Followup-To: comp.unix.sysv386 Organization: MGI Group International, Los Angeles, CA Lines: 30 In an article, ohurley@cs.tcd.ie (Oisin Hurley) writes: >This guy works on a 386 machine running ISC 2.0.2 . An interesting thing >occurred the other day when he manually killed a process - the message > > WARNING: Timeout table overflow > >was sent to the console, continuously, resulting in the machine getting locked >up. [...] Generally speaking, this is a kernel configuration problem. Your callout table in the kernel isn't large enough (trying increasing the size of the NCALL configuration parameter). This may indicate a problem with a device driver on your system. Typically, the callout table is used by drivers to specify entry points in it's code to execute by the kernel's clock handler at a specific time. Drivers call the function timeout() and provide a pointer to a function, an argument to that function, and the number of clock ticks in the future that the kernel should invoke it. The most common uses are for waiting on a busy device and sleeping for n clock ticks, although delay() really should be used in the latter case. Where you can get into trouble is when you use timeout() in the init portion of the driver but the clock handler is disabled by a high priority device. Hope this isn't *too* muddled. :-) -- Michael Stefanik, MGI Inc, Los Angeles | Opinions stated are never realistic Title of the week: Systems Engineer | UUCP: ...!uunet!bria!mike ------------------------------------------------------------------------------- If MS-DOS didn't exist, who would UNIX programmers have to make fun of?