forked from Imagelibrary/rtems
* SUPPORT, LICENSE: New files. * Numerous files touched as part of merging the 4.5 branch onto the mainline development trunk and ensuring that the script that cuts snapshots and releases works on the documentation.
73 lines
1.2 KiB
Perl
73 lines
1.2 KiB
Perl
@c
|
|
@c COPYRIGHT (c) 1988-2002.
|
|
@c On-Line Applications Research Corporation (OAR).
|
|
@c All rights reserved.
|
|
@c
|
|
@c $Id$
|
|
@c
|
|
|
|
@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
|
|
|