From owner-freebsd-hackers@FreeBSD.ORG Mon Mar 10 19:02:04 2014 Return-Path: Delivered-To: freebsd-hackers@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 62A90E7D; Mon, 10 Mar 2014 19:02:04 +0000 (UTC) Received: from bigwig.baldwin.cx (bigwig.baldwin.cx [IPv6:2001:470:1f11:75::1]) (using TLSv1 with cipher ADH-CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id 39CAAA2; Mon, 10 Mar 2014 19:02:04 +0000 (UTC) Received: from jhbbsd.localnet (unknown [209.249.190.124]) by bigwig.baldwin.cx (Postfix) with ESMTPSA id 4529FB980; Mon, 10 Mar 2014 15:02:03 -0400 (EDT) From: John Baldwin To: freebsd-hackers@freebsd.org Subject: Re: [CFR] Kevent timer improvements Date: Mon, 10 Mar 2014 14:49:30 -0400 User-Agent: KMail/1.13.5 (FreeBSD/8.4-CBSD-20130906; KDE/4.5.5; amd64; ; ) References: <20140310131632.GI6900@ithaqua.etoilebsd.net> <20140310182333.GJ32089@funkthat.com> In-Reply-To: <20140310182333.GJ32089@funkthat.com> MIME-Version: 1.0 Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <201403101449.30958.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.2.7 (bigwig.baldwin.cx); Mon, 10 Mar 2014 15:02:03 -0400 (EDT) Cc: desrt@desrt.ca, John-Mark Gurney , hackers@freebsd.org, Baptiste Daroussin X-BeenThere: freebsd-hackers@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: Technical Discussions relating to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 10 Mar 2014 19:02:04 -0000 On Monday, March 10, 2014 2:23:33 pm John-Mark Gurney wrote: > Baptiste Daroussin wrote this message on Mon, Mar 10, 2014 at 14:16 +0100: > > A glib developer pointed me to some of the improvements Apple has done on > > kqueue(2), some of those improvements are used or will be used by glib in the > > near futur, plus add new one. > > > > I decided to implement part of it and here is the first patch about it: > > http://people.freebsd.org/~bapt/kevent.diff > > > > I will update the manpages accordingly as well: > > > > Basically this patch added the following to the EVFILT_TIMER: > > NOTE_SECONDS data is in seconds > > NOTE_USECONDS data is in microseconds > > NOTE_NSECONDS data is in nanoseconds > > Could you contact the maintainer of sbintime and look at adding an > SBINTIME_MAX/_MIN define macros and use those instead of INT64_MAX? We > shouldn't know the internal implementation type of sbintime_t in the > code in case the type changes... > > > I do plan to add kevent64 support compatible with apple implementation later, as > > using NOTE_MONOTONIC without 64bit support is not useful very long :) > > Is this just to support 64bit data on a 32bit system? Also, why is > ident grown to 64bits? I don't see any filters that could possibly > need the additional range... I can understand data be expanded to > 64bits... > > Also, what exactly is ext used for? I'm looking at MacOSX's description > of ext, and it isn't clear.. it basicly says "ext[0] is passed through > much like udata" (only much? not exactly like?), and "ext[1] can always > be used like udata"... It isn't clear how/what these are used for, etc.. > > It looks like the "much like udata" part is because using the > EVFILT_MACHPORT will overwrite it. If we do import this, I'd like to > be clear on how they are used, i.e. their use is specified by the > filter, and if the filter does not use them, they are exactly like > additional udata fields.. Yes, my reading is that that is what they are in practice on OS X, but the manpage has rotted. -- John Baldwin