From owner-svn-src-all@freebsd.org Sat May 14 09:43:29 2016 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 BEF70B3A234; Sat, 14 May 2016 09:43:29 +0000 (UTC) (envelope-from kib@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 903B31EE9; Sat, 14 May 2016 09:43:29 +0000 (UTC) (envelope-from kib@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u4E9hSlg034270; Sat, 14 May 2016 09:43:28 GMT (envelope-from kib@FreeBSD.org) Received: (from kib@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4E9hSB1034269; Sat, 14 May 2016 09:43:28 GMT (envelope-from kib@FreeBSD.org) Message-Id: <201605140943.u4E9hSB1034269@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: kib set sender to kib@FreeBSD.org using -f From: Konstantin Belousov Date: Sat, 14 May 2016 09:43:28 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r299741 - head/lib/libc/sys X-SVN-Group: head 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.22 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: Sat, 14 May 2016 09:43:29 -0000 Author: kib Date: Sat May 14 09:43:28 2016 New Revision: 299741 URL: https://svnweb.freebsd.org/changeset/base/299741 Log: Add thr*.2 and _umtx_op.2 manpages to the build. Sponsored by: The FreeBSD Foundation Modified: head/lib/libc/sys/Makefile.inc Modified: head/lib/libc/sys/Makefile.inc ============================================================================== --- head/lib/libc/sys/Makefile.inc Sat May 14 09:39:21 2016 (r299740) +++ head/lib/libc/sys/Makefile.inc Sat May 14 09:43:28 2016 (r299741) @@ -301,6 +301,11 @@ MAN+= sctp_generic_recvmsg.2 \ sync.2 \ sysarch.2 \ syscall.2 \ + thr_exit.2 \ + thr_kill.2 \ + thr_new.2 \ + thr_self.2 \ + thr_set_name.2 \ timer_create.2 \ timer_delete.2 \ timer_settime.2 \ @@ -314,7 +319,8 @@ MAN+= sctp_generic_recvmsg.2 \ uuidgen.2 \ vfork.2 \ wait.2 \ - write.2 + write.2 \ + _umtx_op.2 MLINKS+=accept.2 accept4.2 MLINKS+=access.2 eaccess.2 \ @@ -440,6 +446,7 @@ MLINKS+=symlink.2 symlinkat.2 MLINKS+=syscall.2 __syscall.2 MLINKS+=timer_settime.2 timer_getoverrun.2 \ timer_settime.2 timer_gettime.2 +MLINKS+=thr_kill.2 thr_kill2.2 MLINKS+=truncate.2 ftruncate.2 MLINKS+=unlink.2 unlinkat.2 MLINKS+=utimensat.2 futimens.2