diff options
author | David Xu <davidxu@FreeBSD.org> | 2010-10-28 02:59:25 +0000 |
---|---|---|
committer | David Xu <davidxu@FreeBSD.org> | 2010-10-28 02:59:25 +0000 |
commit | 1200ef56b51f58505340b5af796552b04d68b0f4 (patch) | |
tree | d260c433025a74cb29c671e1216e54cf96e7bb03 | |
parent | 35928b338e6275a7fe9fa67a08ead19616f6759b (diff) | |
download | src-1200ef56b51f58505340b5af796552b04d68b0f4.tar.gz src-1200ef56b51f58505340b5af796552b04d68b0f4.zip |
Follow the change made in libthr, add ERANGE error code and more
EINVAL error cases.
Notes
Notes:
svn path=/head/; revision=214443
-rw-r--r-- | share/man/man3/pthread_attr_affinity_np.3 | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/share/man/man3/pthread_attr_affinity_np.3 b/share/man/man3/pthread_attr_affinity_np.3 index c61f69988fb7..592652b49017 100644 --- a/share/man/man3/pthread_attr_affinity_np.3 +++ b/share/man/man3/pthread_attr_affinity_np.3 @@ -94,8 +94,6 @@ to indicate the error. .Sh ERRORS The .Fn pthread_attr_getaffinity_np -and -.Fn pthread_attr_setaffinity_np functions will fail if: .Bl -tag -width Er .It Bq Er EINVAL @@ -103,6 +101,10 @@ The .Fa pattr or the attribute specified by it is .Dv NULL . +.It Bq Er ERANGE +The +.Fa cpusetsize +is too small. .El .Pp The @@ -114,6 +116,14 @@ The .Fa pattr or the attribute specified by it is .Dv NULL . +.It Bq Er EINVAL +The +.Fa cpusetp +specified a CPU that was outside the set supported by the kernel. +.It Bq Er ERANGE +The +.Fa cpusetsize +is too small. .It Bq Er ENOMEM Insufficient memory exists to store the cpuset mask. .El |