On Thu, 14 Dec 2000, Joseph Cheek wrote:

> hi,
> 
> ps axufw shows it as pid 1.

Interesting.. init running out of control.  I've seen that, and it
was init taking endless page faults.

I wager (one virtual brew) that you'll see an endless stream of output
if you apply this.

--- kernel/signal.c.org Fri Dec 15 03:36:59 2000
+++ kernel/signal.c     Fri Dec 15 03:39:36 2000
@@ -564,6 +564,9 @@
 {
        unsigned long int flags;
 
+       if (sig == SIGSEGV)
+               printk(KERN_ERR "SIGSEGV pid %d\n", t->pid);
+
        spin_lock_irqsave(&t->sigmask_lock, flags);
        if (t->sig == NULL) {
                spin_unlock_irqrestore(&t->sigmask_lock, flags);

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.tux.org/lkml/

Reply via email to