From d2bfbaf2b170c77c8331dd2e080e765d6430081e Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 16 Nov 1999 21:56:45 +0000 Subject: Fixed spacing. --- doc/posix_users/cond.t | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) (limited to 'doc/posix_users/cond.t') diff --git a/doc/posix_users/cond.t b/doc/posix_users/cond.t index 3923da7396..688cf31331 100644 --- a/doc/posix_users/cond.t +++ b/doc/posix_users/cond.t @@ -57,7 +57,7 @@ and status codes. #include int pthread_condattr_init( -pthread_condattr_t *attr + pthread_condattr_t *attr ); @end example @@ -88,7 +88,7 @@ attributes object. #include int pthread_condattr_destroy( -pthread_condattr_t *attr + pthread_condattr_t *attr ); @end example @@ -118,8 +118,8 @@ The attribute object specified is invalid. #include int pthread_condattr_setpshared( -pthread_condattr_t *attr, -int pshared + pthread_condattr_t *attr, + int pshared ); @end example @@ -150,8 +150,8 @@ Invalid argument passed. #include int pthread_condattr_getpshared( -const pthread_condattr_t *attr, -int *pshared + const pthread_condattr_t *attr, + int *pshared ); @end example @@ -183,8 +183,8 @@ Invalid argument passed. #include int pthread_cond_init( -pthread_cond_t *cond, -const pthread_condattr_t *attr + pthread_cond_t *cond, + const pthread_condattr_t *attr ); @end example @@ -224,7 +224,7 @@ The specified attribute value is invalid. #include int pthread_cond_destroy( -pthread_cond_t *cond + pthread_cond_t *cond ); @end example @@ -257,7 +257,7 @@ The specified condition variable is currently in use. #include int pthread_cond_signal( -pthread_cond_t *cond + pthread_cond_t *cond ); @end example @@ -290,7 +290,7 @@ handler or an interrupt service routine. #include int pthread_cond_broadcast( -pthread_cond_t *cond + pthread_cond_t *cond ); @end example @@ -323,8 +323,8 @@ handler or an interrupt service routine. #include int pthread_cond_wait( -pthread_cond_t *cond, -pthread_mutex_t *mutex + pthread_cond_t *cond, + pthread_mutex_t *mutex ); @end example @@ -357,9 +357,9 @@ the mutex was not owned by the current thread at the time of the call. #include int pthread_cond_timedwait( -pthread_cond_t *cond, -pthread_mutex_t *mutex, -const struct timespec *abstime + pthread_cond_t *cond, + pthread_mutex_t *mutex, + const struct timespec *abstime ); @end example -- cgit v1.2.3