summaryrefslogtreecommitdiffstats
path: root/doc/posix_users
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1999-10-25 17:37:19 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1999-10-25 17:37:19 +0000
commitee0702ef5ed83b14b2ed6ff4079042bf2807d660 (patch)
tree48cf10e27b9c4b3186e8a213a012157996c8f512 /doc/posix_users
parentAdded information on how the directory is stored for future referance (diff)
downloadrtems-ee0702ef5ed83b14b2ed6ff4079042bf2807d660.tar.bz2
Fixing many lines that are too long to format cleanly.
Diffstat (limited to 'doc/posix_users')
-rw-r--r--doc/posix_users/key.t4
-rw-r--r--doc/posix_users/message.t12
-rw-r--r--doc/posix_users/semaphores.t4
-rw-r--r--doc/posix_users/thread.t8
4 files changed, 10 insertions, 18 deletions
diff --git a/doc/posix_users/key.t b/doc/posix_users/key.t
index 7c5068c110..7d3e7edce7 100644
--- a/doc/posix_users/key.t
+++ b/doc/posix_users/key.t
@@ -48,8 +48,8 @@ and status codes.
#include <pthread.h>
int pthread_key_create(
-pthread_key_t *key,
-void (*destructor)( void CVS Makefile cancel.t clock.t cond.t cspecific.t device.t files.t io.t j key.t memorymgmt.t message.t mutex.t nodesc nodescr posix_users.cps posix_users.fns posix_users.texi preface.texi procenv.t process.t psxmsg.t sched.t semaphores.t signal.t systemdb.t thread.t )
+ pthread_key_t *key,
+ void (*destructor)( void )
);
@end example
diff --git a/doc/posix_users/message.t b/doc/posix_users/message.t
index 8a7ad062a5..96c97b4bbc 100644
--- a/doc/posix_users/message.t
+++ b/doc/posix_users/message.t
@@ -66,15 +66,11 @@ queue.
@example
@group
-/backit /backit~ /bin /boot /dev /etc /home /lib /lost+found /mnt /proc /root /sbin /tmp /usr /usr1 /usr2 /usr3 /var
-CVS Makefile cancel.t clock.t cond.t cspecific.t device.t files.t io.t j key.t memorymgmt.t message.t mutex.t nodesc nodescr posix_users.cps posix_users.fns posix_users.texi preface.texi procenv.t process.t psxmsg.t sched.t semaphores.t signal.t systemdb.t thread.t Create Message Queue (mq) Structure
-CVS/
-
typedef struct mq_attr@{
-long mq_flags; /backit /backit~ /bin /boot /dev /etc /home /lib /lost+found /mnt /proc /root /sbin /tmp /usr /usr1 /usr2 /usr3 /var Message queue flags CVS/
-long mq_maxmsg; /backit /backit~ /bin /boot /dev /etc /home /lib /lost+found /mnt /proc /root /sbin /tmp /usr /usr1 /usr2 /usr3 /var Maximum number of messages for the queue CVS/
-long mq_msgsize; /backit /backit~ /bin /boot /dev /etc /home /lib /lost+found /mnt /proc /root /sbin /tmp /usr /usr1 /usr2 /usr3 /var Maximum message size CVS/
-long mq_curmsgs; /backit /backit~ /bin /boot /dev /etc /home /lib /lost+found /mnt /proc /root /sbin /tmp /usr /usr1 /usr2 /usr3 /var Number of messages currently queued CVS/
+ long mq_flags;
+ long mq_maxmsg;
+ long mq_msgsize;
+ long mq_curmsgs;
@};
@end group
@end example
diff --git a/doc/posix_users/semaphores.t b/doc/posix_users/semaphores.t
index 9668d3c2eb..e3bbcbd84e 100644
--- a/doc/posix_users/semaphores.t
+++ b/doc/posix_users/semaphores.t
@@ -45,10 +45,6 @@ The "sem_t" structure is used to represent semaphores. It is passed as an
argument to the semaphore directives and is defined as follows:
@example
-/backit /backit~ /bin /boot /dev /etc /home /lib /lost+found /mnt /proc /root /sbin /tmp /usr /usr1 /usr2 /usr3 /var
-CVS Makefile cancel.t clock.t cond.t cspecific.t device.t files.t io.t j key.t memorymgmt.t message.t mutex.t nodesc nodescr posix_users.cps posix_users.fns posix_users.texi preface.texi procenv.t process.t psxmsg.t sched.t semaphores.t signal.t systemdb.t thread.t sem_t structure
-CVS/
-
typedef int sem_t
@end example
diff --git a/doc/posix_users/thread.t b/doc/posix_users/thread.t
index d755fdbd11..2017dc15f2 100644
--- a/doc/posix_users/thread.t
+++ b/doc/posix_users/thread.t
@@ -887,10 +887,10 @@ family of routines to which this routine belongs is supported.
#include <pthread.h>
int pthread_create(
-pthread_t *thread,
-const pthread_attr_t *attr,
-void (*start_routine)( void CVS Makefile cancel.t clock.t cond.t cspecific.t device.t files.t io.t j key.t memorymgmt.t message.t mutex.t nodesc nodescr posix_users.cps posix_users.fns posix_users.texi preface.texi procenv.t process.t psxmsg.t sched.t semaphores.t signal.t systemdb.t thread.t ),
-void *arg
+ pthread_t *thread,
+ const pthread_attr_t *attr,
+ void (*start_routine)( void *),
+ void *arg
);
@end example