From owner-svn-src-all@freebsd.org Thu Dec 7 01:50:18 2017 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CC97FE95CE3; Thu, 7 Dec 2017 01:50:18 +0000 (UTC) (envelope-from bjk@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 76E8F6EA81; Thu, 7 Dec 2017 01:50:18 +0000 (UTC) (envelope-from bjk@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vB71oHta032864; Thu, 7 Dec 2017 01:50:17 GMT (envelope-from bjk@FreeBSD.org) Received: (from bjk@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vB71oHkR032863; Thu, 7 Dec 2017 01:50:17 GMT (envelope-from bjk@FreeBSD.org) Message-Id: <201712070150.vB71oHkR032863@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: bjk set sender to bjk@FreeBSD.org using -f From: Benjamin Kaduk Date: Thu, 7 Dec 2017 01:50:17 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r326650 - head/lib/libc/sys X-SVN-Group: head X-SVN-Commit-Author: bjk X-SVN-Commit-Paths: head/lib/libc/sys X-SVN-Commit-Revision: 326650 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Dec 2017 01:50:18 -0000 Author: bjk (doc committer) Date: Thu Dec 7 01:50:17 2017 New Revision: 326650 URL: https://svnweb.freebsd.org/changeset/base/326650 Log: Note that old sys/event.h required manual sys/types.h inclusion ed fixed this in r313704 but older versions are still affected. Modified: head/lib/libc/sys/kqueue.2 Modified: head/lib/libc/sys/kqueue.2 ============================================================================== --- head/lib/libc/sys/kqueue.2 Thu Dec 7 01:49:35 2017 (r326649) +++ head/lib/libc/sys/kqueue.2 Thu Dec 7 01:50:17 2017 (r326650) @@ -782,8 +782,9 @@ The value is limited to 24 hours; longer timeouts will be silently reinterpreted as 24 hours. .Pp -Previous versions of +In versions older than +.Fx 12.0 , .In sys/event.h -fail to parse without including +failed to parse without including .In sys/types.h manually.