From 3db81880fe8238375a1cd1ba336330bd6206d001 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Tue, 16 Nov 1999 20:22:25 +0000 Subject: Fixed spacing. --- doc/posix_users/sched.t | 8 ++--- doc/posix_users/thread.t | 88 ++++++++++++++++++++++++------------------------ 2 files changed, 48 insertions(+), 48 deletions(-) (limited to 'doc/posix_users') diff --git a/doc/posix_users/sched.t b/doc/posix_users/sched.t index d4bae94f0f..afe0bb896d 100644 --- a/doc/posix_users/sched.t +++ b/doc/posix_users/sched.t @@ -84,7 +84,7 @@ and status codes. #include int sched_get_priority_min( -int policy + int policy ); @end example @@ -122,7 +122,7 @@ NONE #include int sched_get_priority_max( -int policy + int policy ); @end example @@ -160,8 +160,8 @@ NONE #include int sched_rr_get_interval( -pid_t pid, -struct timespec *interval + pid_t pid, + struct timespec *interval ); @end example diff --git a/doc/posix_users/thread.t b/doc/posix_users/thread.t index e2f354a2a9..97f54b086e 100644 --- a/doc/posix_users/thread.t +++ b/doc/posix_users/thread.t @@ -114,7 +114,7 @@ and status codes. #include int pthread_attr_init( -pthread_attr_t *attr + pthread_attr_t *attr ); @end example @@ -173,7 +173,7 @@ is set to @code{PTHREAD_CREATE_JOINABLE}. #include int pthread_attr_destroy( -pthread_attr_t *attr + pthread_attr_t *attr ); @end example @@ -213,8 +213,8 @@ NONE #include int pthread_attr_setdetachstate( -pthread_attr_t *attr, -int detachstate + pthread_attr_t *attr, + int detachstate ); @end example @@ -263,8 +263,8 @@ then the use of the ID with the @code{pthread_detach} or #include int pthread_attr_getdetachstate( -const pthread_attr_t *attr, -int *detachstate + const pthread_attr_t *attr, + int *detachstate ); @end example @@ -307,8 +307,8 @@ NONE #include int pthread_attr_setstacksize( -pthread_attr_t *attr, -size_t stacksize + pthread_attr_t *attr, + size_t stacksize ); @end example @@ -354,8 +354,8 @@ for this CPU. #include int pthread_attr_getstacksize( -const pthread_attr_t *attr, -size_t *stacksize + const pthread_attr_t *attr, + size_t *stacksize ); @end example @@ -400,8 +400,8 @@ routine is supported. #include int pthread_attr_setstackaddr( -pthread_attr_t *attr, -void *stackaddr + pthread_attr_t *attr, + void *stackaddr ); @end example @@ -446,8 +446,8 @@ each thread have sufficient stack space. #include int pthread_attr_getstackaddr( -const pthread_attr_t *attr, -void **stackaddr + const pthread_attr_t *attr, + void **stackaddr ); @end example @@ -492,8 +492,8 @@ routine is supported. #include int pthread_attr_setscope( -pthread_attr_t *attr, -int contentionscope + pthread_attr_t *attr, + int contentionscope ); @end example @@ -546,8 +546,8 @@ family of routines to which this routine belongs is supported. #include int pthread_attr_getscope( -const pthread_attr_t *attr, -int *contentionscope + const pthread_attr_t *attr, + int *contentionscope ); @end example @@ -592,8 +592,8 @@ family of routines to which this routine belongs is supported. #include int pthread_attr_setinheritsched( -pthread_attr_t *attr, -int inheritsched + pthread_attr_t *attr, + int inheritsched ); @end example @@ -647,8 +647,8 @@ family of routines to which this routine belongs is supported. #include int pthread_attr_getinheritsched( -const pthread_attr_t *attr, -int *inheritsched + const pthread_attr_t *attr, + int *inheritsched ); @end example @@ -692,8 +692,8 @@ family of routines to which this routine belongs is supported. #include int pthread_attr_setschedpolicy( -pthread_attr_t *attr, -int policy + pthread_attr_t *attr, + int policy ); @end example @@ -752,8 +752,8 @@ family of routines to which this routine belongs is supported. #include int pthread_attr_getschedpolicy( -const pthread_attr_t *attr, -int *policy + const pthread_attr_t *attr, + int *policy ); @end example @@ -797,8 +797,8 @@ family of routines to which this routine belongs is supported. #include int pthread_attr_setschedparam( -pthread_attr_t *attr, -const struct sched_param param + pthread_attr_t *attr, + const struct sched_param param ); @end example @@ -842,8 +842,8 @@ family of routines to which this routine belongs is supported. #include int pthread_attr_getschedparam( -const pthread_attr_t *attr, -struct sched_param *param + const pthread_attr_t *attr, + struct sched_param *param ); @end example @@ -976,7 +976,7 @@ creator and the set of pending signals for this thread is empty. #include void pthread_exit( -void *status + void *status ); @end example @@ -1036,7 +1036,7 @@ as the return value. #include int pthread_detach( -pthread_t thread + pthread_t thread ); @end example @@ -1077,8 +1077,8 @@ will remain joined with that thread. Any subsequent calls to #include int pthread_join( -pthread_t thread, -void **value_ptr + pthread_t thread, + void **value_ptr ); @end example @@ -1158,8 +1158,8 @@ NONE #include int pthread_equal( -pthread_t t1, -pthread_t t2 + pthread_t t1, + pthread_t t2 ); @end example @@ -1200,8 +1200,8 @@ The behavior is undefined if the thread IDs are not valid. pthread_once_t once_control = PTHREAD_ONCE_INIT; int pthread_once( -pthread_once_t *once_control, -void (*init_routine)(void) + pthread_once_t *once_control, + void (*init_routine)(void) ); @end example @@ -1241,9 +1241,9 @@ is automatic storage (i.e. on a task stack) or is not initialized using #include int pthread_setschedparam( -pthread_t thread, -int policy, -struct sched_param *param + pthread_t thread, + int policy, + struct sched_param *param ); @end example @@ -1298,9 +1298,9 @@ family of routines to which this routine belongs is supported. #include int pthread_getschedparam( -pthread_t thread, -int *policy, -struct sched_param *param + pthread_t thread, + int *policy, + struct sched_param *param ); @end example -- cgit v1.2.3