summaryrefslogtreecommitdiffstats
path: root/doc/posix_users
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2000-05-04 19:45:17 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2000-05-04 19:45:17 +0000
commitadee597960ce3c5ff0ce303ae9ac25b7eebdfe32 (patch)
tree4c316747f2c69a4a96edc22964add7939a965c72 /doc/posix_users
parentNew file. (diff)
downloadrtems-adee597960ce3c5ff0ce303ae9ac25b7eebdfe32.tar.bz2
Numerous changes based on comments from Stephan Wilms <Stephan.Wilms@CWA.de>
including a new section in the Getting Started called "Where to Go From Here", lots of index entries added, and more configuration table information.
Diffstat (limited to 'doc/posix_users')
-rw-r--r--doc/posix_users/message.t4
-rw-r--r--doc/posix_users/semaphores.t7
2 files changed, 8 insertions, 3 deletions
diff --git a/doc/posix_users/message.t b/doc/posix_users/message.t
index 5c0b6aed8c..09d9b40ee2 100644
--- a/doc/posix_users/message.t
+++ b/doc/posix_users/message.t
@@ -56,7 +56,8 @@ established for the passing of messages. Synchronization is needed when a
task waits for a message to arrive at a queue. Also, a task may poll a
queue for the arrival of a message.
-The message queue descriptor mqd_t mq represents the message queue. It is
+@findex mqd_t
+The message queue descriptor @code{mqd_t} represents the message queue. It is
passed as an argument to all of the message queue functions.
@subsection Building a Message Queue Attribute Set
@@ -64,6 +65,7 @@ passed as an argument to all of the message queue functions.
The mq_attr structure is used to define the characteristics of the message
queue.
+@findex mq_attr
@example
@group
typedef struct mq_attr@{
diff --git a/doc/posix_users/semaphores.t b/doc/posix_users/semaphores.t
index bf3de0ea43..68fa6216f0 100644
--- a/doc/posix_users/semaphores.t
+++ b/doc/posix_users/semaphores.t
@@ -42,11 +42,14 @@ returned to the semaphore. If there is more than one task waiting for a
semaphore, the tasks will be placed in the queue.
@subsection "sem_t" Structure
-The "sem_t" structure is used to represent semaphores. It is passed as an
+
+@findex sem_t
+
+The @code{sem_t} structure is used to represent semaphores. It is passed as an
argument to the semaphore directives and is defined as follows:
@example
-typedef int sem_t
+typedef int sem_t;
@end example
@subsection Building a Semaphore Attribute Set