From adee597960ce3c5ff0ce303ae9ac25b7eebdfe32 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 4 May 2000 19:45:17 +0000 Subject: Numerous changes based on comments from Stephan Wilms including a new section in the Getting Started called "Where to Go From Here", lots of index entries added, and more configuration table information. --- doc/posix_users/message.t | 4 +++- doc/posix_users/semaphores.t | 7 +++++-- 2 files changed, 8 insertions(+), 3 deletions(-) (limited to 'doc/posix_users') 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 -- cgit v1.2.3