source: rtems/doc/posix1003.1/ch16.t @ 7331714

4.104.114.84.95
Last change on this file since 7331714 was 7331714, checked in by Joel Sherrill <joel.sherrill@…>, on 03/18/98 at 18:15:01

Added Constants, Feature Flags, and Macros (included in Functions).
No status information was included.

  • Property mode set to 100644
File size: 1.4 KB
Line 
1@c
2@c  COPYRIGHT (c) 1988-1998.
3@c  On-Line Applications Research Corporation (OAR).
4@c  All rights reserved.
5@c
6@c  $Id$
7@c
8
9@chapter Thread Management
10
11@section Threads
12
13@section Thread Functions
14
15@subsection Thread Creation Attributes
16
17@example
18pthread_attr_init(), Function, Implemented
19pthread_attr_destroy(), Function, Implemented
20pthread_attr_setstacksize(), Function, Implemented
21pthread_attr_getstacksize(), Function, Implemented
22pthread_attr_setstackaddr(), Function, Implemented
23pthread_attr_getstackaddr(), Function, Implemented
24pthread_attr_setdetachstate(), Function, Implemented
25pthread_attr_getdetachstate(), Function, Implemented
26PTHREAD_CREATE_JOINABLE, Constant,
27PTHREAD_CREATE_DETACHED, Constant,
28@end example
29
30@subsection Thread Creation
31
32@example
33pthread_create(), Function, Implemented
34@end example
35
36@subsection Wait for Thread Termination
37
38@example
39pthread_join(), Function, Implemented
40@end example
41
42@subsection Detaching a Thread
43
44@example
45pthread_detach(), Function, Implemented
46@end example
47
48@subsection Thread Termination
49
50@example
51pthread_exit(), Function, Implemented
52@end example
53
54@subsection Get Thread ID
55
56@example
57pthread_self(), Function, Implemented
58@end example
59
60@subsection Compare Thread IDs
61
62@example
63pthread_equal(), Function, Implemented
64@end example
65
66@subsection Dynamic Package Initialization
67
68@example
69pthread_once(), Function, Implemented
70PTHREAD_ONCE_INIT, Constant,
71@end example
72
Note: See TracBrowser for help on using the repository browser.