source: rtems/doc/new_chapters/base.t @ 3c56251

4.104.114.84.95
Last change on this file since 3c56251 was 3c56251, checked in by Joel Sherrill <joel.sherrill@…>, on 08/01/98 at 15:50:54

New file.

  • Property mode set to 100644
File size: 1.9 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@ifinfo
10@node Mutex Manager, Mutex Manager Introduction, Preface, Top
11@end ifinfo
12@chapter Mutex Manager
13@ifinfo
14@menu
15* Mutex Manager Introduction::
16* Mutex Manager Background::
17* Mutex Manager Operations::
18* Mutex Manager Directives::
19@end menu
20@end ifinfo
21
22@ifinfo
23@node Mutex Manager Introduction, Mutex Manager Background, Mutex Manager, Mutex Manager
24@end ifinfo
25@section Introduction
26
27The mutex manager ...
28
29The directives provided by the mutex manager are:
30
31@itemize @bullet
32@item @code{sigaddset} -
33@item @code{sigdelset} -
34@item @code{sigfillset} -
35@item @code{sigismember} -
36@item @code{sigemptyset} -
37@item @code{sigaction} -
38@item @code{pthread_kill} -
39@item @code{pthread_sigmask} -
40@item @code{kill} -
41@item @code{sigwait} -
42@end itemize
43
44@ifinfo
45@node Mutex Manager Background, Mutex Manager Operations, Mutex Manager Introduction, Mutex Manager
46@end ifinfo
47@section Background
48
49@ifinfo
50@node Mutex Manager Operations, Mutex Manager Directives, Mutex Manager Background, Mutex Manager
51@end ifinfo
52@section Operations
53
54@ifinfo
55@node Mutex Manager Directives, sigaddset, Mutex Manager Operations, Mutex Manager
56@end ifinfo
57@section Directives
58@ifinfo
59@menu
60* sigaddset::
61* sigdelset::
62* sigfillset::
63* sigismember::
64* sigemptyset::
65* sigaction::
66* pthread_kill::
67* pthread_sigmask::
68* kill::
69* sigwait::
70@end menu
71@end ifinfo
72
73This section details the mutex manager's directives.
74A subsection is dedicated to each of this manager's directives
75and describes the calling sequence, related constants, usage,
76and status codes.
77
78@page
79@ifinfo
80@node sigaddset, sigdelset, Mutex Manager Directives, Mutex Manager Directives
81@end ifinfo
82@subsection sigaddset
83
84@subheading CALLING SEQUENCE:
85
86@example
87int sigaddset(
88  sigset_t   *set,
89  int         signo
90);
91@end example
92
93@subheading STATUS CODES:
94
95@subheading DESCRIPTION:
96
97@subheading NOTES:
98
Note: See TracBrowser for help on using the repository browser.