summaryrefslogtreecommitdiffstats
path: root/doc/posix1003.1/ch15.t
blob: 2d1fb150404bada24e74be3297ff57c7a976d979 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
@c
@c  COPYRIGHT (c) 1988-2002.
@c  On-Line Applications Research Corporation (OAR).
@c  All rights reserved.

@chapter Message Passing

@section Data Definitions for Message Queues

@subsection Data Structures

NOTE: Semaphores are implemented but only unnamed semaphores
are currently tested.

@example
mqd_t, Type, Implemented
struct mq_attr, Type, Implemented
@end example

@section Message Passing Functions

@subsection Open a Message Queue

@example
mq_open(), Function, Implemented
@end example

@subsection Close a Message Queue

@example
mq_close(), Function, Implemented
@end example

@subsection Remove a Message Queue

@example
mq_unlink(), Function, Implemented
@end example

@subsection Send a Message to a Message Queue

@example
mq_send(), Function, Implemented
@end example

@subsection Receive a Message From a Message Queue

@example
mq_receive(), Function, Implemented
@end example

@subsection Notify Process That a Message is Available on a Queue

@example
mq_notify(), Function, Implemented
@end example

@subsection Set Message Queue Attributes

@example
mq_setattr(), Function, Implemented
@end example

@subsection Get Message Queue Attributes

@example
mq_getattr(), Function, Implemented
@end example