Print this page
11583 Some man3lib pages are missing parts of the SYNOPSIS
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/man/man3lib/libpthread.3lib
+++ new/usr/src/man/man3lib/libpthread.3lib
1 1 '\" te
2 2 .\" Copyright (c) 2014, Joyent, Inc.
3 3 .\" Copyright (c) 2004, Sun Microsystems, Inc. All Rights Reserved.
4 4 .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License"). You may not use this file except in compliance with the License.
5 5 .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing. See the License for the specific language governing permissions and limitations under the License.
6 6 .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE. If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner]
7 -.TH LIBPTHREAD 3LIB "Oct 1, 2014"
7 +.TH LIBPTHREAD 3LIB "Aug 19, 2019"
8 8 .SH NAME
9 9 libpthread \- POSIX threads library
10 10 .SH SYNOPSIS
11 -.LP
12 11 .nf
13 -cc -mt [ \fIflag\fR... ] \fIfile\fR... \fB-lpthread\fR [ \fB -lrt \fR \fIlibrary\fR... ]
12 +cc -mt [ \fIflag\fR... ] \fIfile\fR... \fB-lpthread\fR [ \fIlibrary\fR... ]
14 13 .fi
15 14
16 15 .SH DESCRIPTION
17 -.LP
18 16 Historically, functions in this library provided POSIX threading support. See
19 17 \fBstandards\fR(5). This functionality now resides in \fBlibc\fR(3LIB).
20 18 .LP
21 19 This library is maintained to provide backward compatibility for both runtime
22 20 and compilation environments. The shared object is implemented as a filter on
23 21 \fBlibc.so.1\fR. New application development need not specify \fB-lpthread\fR
24 22 although doing so has no effect.
25 23 .SH INTERFACES
26 -.LP
27 24 The shared object \fBlibpthread.so.1\fR provides the public interfaces defined
28 25 below. See \fBIntro\fR(3) for additional information on shared object
29 26 interfaces.
30 27 .sp
31 28
32 29 .sp
33 30 .TS
34 31 l l
35 32 l l .
36 33 \fB__pthread_cleanup_pop\fR \fB__pthread_cleanup_push\fR
37 34 \fBpthread_attr_destroy\fR \fBpthread_attr_getdetachstate\fR
38 35 \fBpthread_attr_getguardsize\fR \fBpthread_attr_getinheritsched\fR
39 36 \fBpthread_attr_getschedparam\fR \fBpthread_attr_getschedpolicy\fR
40 37 \fBpthread_attr_getscope\fR \fBpthread_attr_getstackaddr\fR
41 38 \fBpthread_attr_getstacksize\fR \fBpthread_attr_init\fR
42 39 \fBpthread_attr_setdetachstate\fR \fBpthread_attr_setguardsize\fR
43 40 \fBpthread_attr_setinheritsched\fR \fBpthread_attr_setschedparam\fR
44 41 \fBpthread_attr_setschedpolicy\fR \fBpthread_attr_setscope\fR
45 42 \fBpthread_attr_setstackaddr\fR \fBpthread_attr_setstacksize\fR
46 43 \fBpthread_cancel\fR \fBpthread_cond_broadcast\fR
47 44 \fBpthread_cond_destroy\fR \fBpthread_cond_init\fR
48 45 \fBpthread_cond_reltimedwait_np\fR \fBpthread_cond_signal\fR
49 46 \fBpthread_cond_timedwait\fR \fBpthread_cond_wait\fR
50 47 \fBpthread_condattr_destroy\fR \fBpthread_condattr_getpshared\fR
51 48 \fBpthread_condattr_init\fR \fBpthread_condattr_setpshared\fR
52 49 \fBpthread_create\fR \fBpthread_detach\fR
53 50 \fBpthread_equal\fR \fBpthread_exit\fR
54 51 \fBpthread_getconcurrency\fR \fBpthread_getschedparam\fR
55 52 \fBpthread_getspecific\fR \fBpthread_join\fR
56 53 \fBpthread_key_create\fR \fBpthread_key_delete\fR
57 54 \fBpthread_kill\fR \fBpthread_mutex_consistent_np\fR
58 55 \fBpthread_mutex_destroy\fR \fBpthread_mutex_getprioceiling\fR
59 56 \fBpthread_mutex_init\fR \fBpthread_mutex_lock\fR
60 57 \fBpthread_mutex_setprioceiling\fR \fBpthread_mutex_trylock\fR
61 58 \fBpthread_mutex_unlock\fR \fBpthread_mutexattr_destroy\fR
62 59 \fBpthread_mutexattr_getprioceiling\fR \fBpthread_mutexattr_getprotocol\fR
63 60 \fBpthread_mutexattr_getpshared\fR \fBpthread_mutexattr_getrobust_np\fR
64 61 \fBpthread_mutexattr_gettype\fR \fBpthread_mutexattr_init\fR
65 62 \fBpthread_mutexattr_setprioceiling\fR \fBpthread_mutexattr_setprotocol\fR
66 63 \fBpthread_mutexattr_setpshared\fR \fBpthread_mutexattr_setrobust_np\fR
67 64 \fBpthread_mutexattr_settype\fR \fBpthread_once\fR
68 65 \fBpthread_rwlock_destroy\fR \fBpthread_rwlock_init\fR
69 66 \fBpthread_rwlock_rdlock\fR \fBpthread_rwlock_tryrdlock\fR
70 67 \fBpthread_rwlock_trywrlock\fR \fBpthread_rwlock_unlock\fR
71 68 \fBpthread_rwlock_wrlock\fR \fBpthread_rwlockattr_destroy\fR
72 69 \fBpthread_rwlockattr_getpshared\fR \fBpthread_rwlockattr_init\fR
↓ open down ↓ |
36 lines elided |
↑ open up ↑ |
73 70 \fBpthread_rwlockattr_setpshared\fR \fBpthread_self\fR
74 71 \fBpthread_setcancelstate\fR \fBpthread_setcanceltype\fR
75 72 \fBpthread_setconcurrency\fR \fBpthread_setschedparam\fR
76 73 \fBpthread_setspecific\fR \fBpthread_sigmask\fR
77 74 \fBpthread_testcancel\fR
78 75 .TE
79 76
80 77 .SH FILES
81 78 .ne 2
82 79 .na
83 -\fB\fB/lib/libpthread.so.1\fR\fR
80 +\fB/lib/libpthread.so.1\fR
84 81 .ad
85 82 .RS 27n
86 83 a filter on \fB/lib/libc.so.1\fR
87 84 .RE
88 85
89 86 .sp
90 87 .ne 2
91 88 .na
92 -\fB\fB/lib/64/libpthread.so.1\fR\fR
89 +\fB/lib/64/libpthread.so.1\fR
93 90 .ad
94 91 .RS 27n
95 92 a filter on \fB/lib/64/libc.so.1\fR
96 93 .RE
97 94
98 95 .SH ATTRIBUTES
99 -.LP
100 96 See \fBattributes\fR(5) for descriptions of the following attributes:
101 97 .sp
102 98
103 99 .sp
104 100 .TS
105 101 box;
106 102 c | c
107 103 l | l .
108 104 ATTRIBUTE TYPE ATTRIBUTE VALUE
109 105 _
110 106 MT-Level Safe
111 107 .TE
112 108
113 109 .SH SEE ALSO
114 -.LP
115 110 \fBpvs\fR(1), \fBIntro\fR(2), \fBIntro\fR(3), \fBlibc\fR(3LIB),
116 111 \fBlibc_db\fR(3LIB), \fBlibthread\fR(3LIB), \fBattributes\fR(5),
117 112 \fBstandards\fR(5), \fBthreads\fR(5)
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX