diff options
author | jilles <jilles@FreeBSD.org> | 2016-06-18 13:44:10 +0000 |
---|---|---|
committer | jilles <jilles@FreeBSD.org> | 2016-06-18 13:44:10 +0000 |
commit | ff13a7445b53c23b231f817fe9ccf9c848d13ed2 (patch) | |
tree | f7b7599c47100aebbb0291981b88ce354215cf45 /share | |
parent | 9e91116bda50ac7035100e9d04ad3fac48bd3202 (diff) | |
download | FreeBSD-src-ff13a7445b53c23b231f817fe9ccf9c848d13ed2.zip FreeBSD-src-ff13a7445b53c23b231f817fe9ccf9c848d13ed2.tar.gz |
MFC r301076: Fix typo ESRC -> ESRCH in pthread man pages.
Diffstat (limited to 'share')
-rw-r--r-- | share/man/man3/pthread_attr_get_np.3 | 2 | ||||
-rw-r--r-- | share/man/man3/pthread_resume_np.3 | 2 | ||||
-rw-r--r-- | share/man/man3/pthread_suspend_np.3 | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/share/man/man3/pthread_attr_get_np.3 b/share/man/man3/pthread_attr_get_np.3 index 774be8f..1ca0148 100644 --- a/share/man/man3/pthread_attr_get_np.3 +++ b/share/man/man3/pthread_attr_get_np.3 @@ -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 diff --git a/share/man/man3/pthread_resume_np.3 b/share/man/man3/pthread_resume_np.3 index d6235ce..1a0bd2a 100644 --- a/share/man/man3/pthread_resume_np.3 +++ b/share/man/man3/pthread_resume_np.3 @@ -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. diff --git a/share/man/man3/pthread_suspend_np.3 b/share/man/man3/pthread_suspend_np.3 index c4bb645..3b77119 100644 --- a/share/man/man3/pthread_suspend_np.3 +++ b/share/man/man3/pthread_suspend_np.3 @@ -63,7 +63,7 @@ An attempt was made to suspend the current thread. 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. |