From owner-svn-src-all@freebsd.org Tue May 31 21:09:43 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 F1AC6B5B0D6; Tue, 31 May 2016 21:09:43 +0000 (UTC) (envelope-from jilles@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 C22F41028; Tue, 31 May 2016 21:09:43 +0000 (UTC) (envelope-from jilles@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u4VL9g7L097949; Tue, 31 May 2016 21:09:42 GMT (envelope-from jilles@FreeBSD.org) Received: (from jilles@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u4VL9gbi097946; Tue, 31 May 2016 21:09:42 GMT (envelope-from jilles@FreeBSD.org) Message-Id: <201605312109.u4VL9gbi097946@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: jilles set sender to jilles@FreeBSD.org using -f From: Jilles Tjoelker Date: Tue, 31 May 2016 21:09:42 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r301076 - head/share/man/man3 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: Tue, 31 May 2016 21:09:44 -0000 Author: jilles Date: Tue May 31 21:09:42 2016 New Revision: 301076 URL: https://svnweb.freebsd.org/changeset/base/301076 Log: Fix typo ESRC -> ESRCH in pthread man pages. Modified: head/share/man/man3/pthread_attr_get_np.3 head/share/man/man3/pthread_resume_np.3 head/share/man/man3/pthread_suspend_np.3 Modified: head/share/man/man3/pthread_attr_get_np.3 ============================================================================== --- head/share/man/man3/pthread_attr_get_np.3 Tue May 31 20:54:42 2016 (r301075) +++ head/share/man/man3/pthread_attr_get_np.3 Tue May 31 21:09:42 2016 (r301076) @@ -93,7 +93,7 @@ function will fail if: .Bl -tag -width Er .It Bq Er EINVAL Invalid value for one of given parameters. -.It Bq Er ESRC +.It Bq Er ESRCH No thread could be found corresponding to that specified by the given thread ID. .El Modified: head/share/man/man3/pthread_resume_np.3 ============================================================================== --- head/share/man/man3/pthread_resume_np.3 Tue May 31 20:54:42 2016 (r301075) +++ head/share/man/man3/pthread_resume_np.3 Tue May 31 21:09:42 2016 (r301076) @@ -57,7 +57,7 @@ function will fail if: The value specified by the .Fa tid argument is invalid. -.It Bq Er ESRC +.It Bq Er ESRCH No thread could be found corresponding to the thread ID specified by the .Fa tid argument. Modified: head/share/man/man3/pthread_suspend_np.3 ============================================================================== --- head/share/man/man3/pthread_suspend_np.3 Tue May 31 20:54:42 2016 (r301075) +++ head/share/man/man3/pthread_suspend_np.3 Tue May 31 21:09:42 2016 (r301076) @@ -63,7 +63,7 @@ An attempt was made to suspend the curre The value specified by the .Fa tid argument is invalid. -.It Bq Er ESRC +.It Bq Er ESRCH No thread could be found corresponding to the thread ID specified by the .Fa tid argument.