From owner-svn-src-all@freebsd.org Sun Oct 28 02:58:16 2018 Return-Path: Delivered-To: svn-src-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 1DBE810DFE03; Sun, 28 Oct 2018 02:58:16 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id C0F5E6BD29; Sun, 28 Oct 2018 02:58:15 +0000 (UTC) (envelope-from imp@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 mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id A032319773; Sun, 28 Oct 2018 02:58:15 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w9S2wFTZ027580; Sun, 28 Oct 2018 02:58:15 GMT (envelope-from imp@FreeBSD.org) Received: (from imp@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w9S2wFa8027579; Sun, 28 Oct 2018 02:58:15 GMT (envelope-from imp@FreeBSD.org) Message-Id: <201810280258.w9S2wFa8027579@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: imp set sender to imp@FreeBSD.org using -f From: Warner Losh Date: Sun, 28 Oct 2018 02:58:15 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r339832 - head/lib/libcompat/4.1 X-SVN-Group: head X-SVN-Commit-Author: imp X-SVN-Commit-Paths: head/lib/libcompat/4.1 X-SVN-Commit-Revision: 339832 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.29 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: Sun, 28 Oct 2018 02:58:16 -0000 Author: imp Date: Sun Oct 28 02:58:15 2018 New Revision: 339832 URL: https://svnweb.freebsd.org/changeset/base/339832 Log: ftime appeared in 7th Edition Unix to replace gtime. Note that the timezone and dst entries are always returned as 0. Modified: head/lib/libcompat/4.1/ftime.3 Modified: head/lib/libcompat/4.1/ftime.3 ============================================================================== --- head/lib/libcompat/4.1/ftime.3 Sun Oct 28 02:57:50 2018 (r339831) +++ head/lib/libcompat/4.1/ftime.3 Sun Oct 28 02:58:15 2018 (r339832) @@ -28,7 +28,7 @@ .\" @(#)ftime.3 8.1 (Berkeley) 6/4/93 .\" $FreeBSD$ .\" -.Dd June 4, 1993 +.Dd August 4, 2018 .Dt FTIME 3 .Os .Sh NAME @@ -67,9 +67,8 @@ struct timeb .Pp The structure contains the time since the epoch in seconds, up to 1000 milliseconds of more-precise interval, -the local time zone (measured in minutes of time westward from Greenwich), -and a flag that, if nonzero, indicates that -Daylight Saving time applies locally during the appropriate part of the year. +The kernel no longer maintains the timezone and dstflag info, so 0 is +always returned for these fields. .Sh SEE ALSO .Xr gettimeofday 2 , .Xr settimeofday 2 , @@ -79,4 +78,4 @@ Daylight Saving time applies locally during the approp The .Nm function appeared in -.Bx 4.2 . +.At v7 .