atom feed10 messages in org.freebsd.freebsd-currentRe: truss(1) locked in kernel with 8....
FromSent OnAttachments
Jeremie Le HenAug 22, 2009 11:57 am 
Ed SchoutenAug 22, 2009 12:39 pm 
Kostik BelousovAug 22, 2009 12:47 pm 
Stefan BethkeAug 22, 2009 1:03 pm 
Nathan LayAug 22, 2009 9:07 pm 
Ed SchoutenAug 22, 2009 11:50 pm 
Ed SchoutenAug 23, 2009 12:17 am 
Nathan LayAug 23, 2009 1:11 pm 
Nathan LayAug 23, 2009 1:24 pm 
Ed SchoutenAug 23, 2009 1:47 pm 
Subject:Re: truss(1) locked in kernel with 8.0-BETA2
From:Ed Schouten (ed@80386.nl)
Date:Aug 22, 2009 11:50:35 pm
List:org.freebsd.freebsd-current

* Nathan Lay <nsl@comcast.net> wrote:

Instead of zeroing and setting master and STDIN_FILENO on the fd_set every iteration, <snip>

The current code doesn't zero the fdsets each iteration, only during startup:

| FD_ZERO(&rfd); | for (;;) { | FD_SET(master, &rfd); | if (!nostdin) | FD_SET(STDIN_FILENO, &rfd);