Re: Killing a zombie process?

2015-09-29 Thread Paul Goyette
On Thu, 24 Sep 2015, Paul Goyette wrote: Yup, my zombie's parent PPID==1 If init is really its parent, check its "ps axl" output and check its WCHAN. If it isn't "wait", maybe run "ktruss -p 1" to get an idea of what it is doing instead of wait*() calls. See ps output above; init's WCHAN=

Re: kqueue: SIGIO?

2015-09-29 Thread Robert Elz
Date:Wed, 30 Sep 2015 00:30:36 +0200 From:Joerg Sonnenberger Message-ID: <20150929223036.ga18...@britannica.bec.de> | If there is any kind of load going on, | the signal sending is more costly than occassional querying the kqueue | for (other active) entries. Y

daily CVS update output

2015-09-29 Thread NetBSD source update
Updating src tree: P src/distrib/sets/lists/comp/shl.mi P src/distrib/sets/lists/debug/md.amd64 P src/distrib/sets/lists/debug/md.sparc64 P src/doc/3RDPARTY P src/doc/CHANGES P src/external/bsd/elftoolchain/dist/common/_elftc.h P src/external/bsd/elftoolchain/dist/libelf/_libelf_config.h P src/ext

Re: kqueue: SIGIO?

2015-09-29 Thread Joerg Sonnenberger
On Tue, Sep 29, 2015 at 10:09:51PM +0200, Rhialto wrote: > On Tue 29 Sep 2015 at 13:22:08 +0200, Tobias Nygren wrote: > > Here is the relevant bit of the talk if you are curious: > > > > https://www.youtube.com/watch?v=t400SmZlnO8&feature=youtu.be&t=1888 > > So he wants a signal when a message is

Automated report: NetBSD-current/i386 build failure

2015-09-29 Thread NetBSD Test Fixture
This is an automatically generated notice of a NetBSD-current/i386 build failure. The failure occurred on babylon5.NetBSD.org, a NetBSD/amd64 host, using sources from CVS date 2015.09.29.20.43.16. An extract from the build.sh output follows: off_t elf_rand(Elf *_elf, off_t _off); ^

Re: kqueue: SIGIO?

2015-09-29 Thread Rhialto
On Tue 29 Sep 2015 at 13:22:08 +0200, Tobias Nygren wrote: > Here is the relevant bit of the talk if you are curious: > > https://www.youtube.com/watch?v=t400SmZlnO8&feature=youtu.be&t=1888 So he wants a signal when a message is available in a kqueue, in other words, can be read with kevent(2).

Re: kqueue: SIGIO?

2015-09-29 Thread Tobias Nygren
On Tue, 29 Sep 2015 12:56:36 +0200 Joerg Sonnenberger wrote: > On Tue, Sep 29, 2015 at 11:31:20AM +0200, Thomas Klausner wrote: > > During the XDC last week, Keith Packard talked about a select(2) issue > > in xserver he would like to fix with epoll and its support for SIGIO. > > Is there a simi

Re: kqueue: SIGIO?

2015-09-29 Thread Joerg Sonnenberger
On Tue, Sep 29, 2015 at 11:31:20AM +0200, Thomas Klausner wrote: > Hi! > > During the XDC last week, Keith Packard talked about a select(2) issue > in xserver he would like to fix with epoll and its support for SIGIO. > Is there a similar feature in kqueue in NetBSD? It would be easier to answer

kqueue: SIGIO?

2015-09-29 Thread Thomas Klausner
Hi! During the XDC last week, Keith Packard talked about a select(2) issue in xserver he would like to fix with epoll and its support for SIGIO. Is there a similar feature in kqueue in NetBSD? Thomas