From 22b4b2e0d281d0612d1e9b0bb479463580097ee0 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 1 Aug 1996 19:24:57 +0000 Subject: added page delimiters for comment blocks --- c/src/exec/posix/src/pthread.c | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'c/src/exec/posix/src/pthread.c') diff --git a/c/src/exec/posix/src/pthread.c b/c/src/exec/posix/src/pthread.c index dd8027c4f2..a4ca778f50 100644 --- a/c/src/exec/posix/src/pthread.c +++ b/c/src/exec/posix/src/pthread.c @@ -232,6 +232,11 @@ void _POSIX_Threads_Initialize_user_threads( void ) } } +/*PAGE + * + * API Extension control structures + */ + API_extensions_Control _POSIX_Threads_API_extensions = { { NULL, NULL }, NULL, /* predriver */ @@ -434,7 +439,7 @@ int pthread_attr_setschedpolicy( /*PAGE * - * 13.5.1 Thread Creation Scheduling Attributes, P1003.1c/Draft 10, p. 120 + * 13.5.1 Thread Creation Scheduling Parameters, P1003.1c/Draft 10, p. 120 */ int pthread_attr_getschedpolicy( @@ -451,12 +456,12 @@ int pthread_attr_getschedpolicy( /*PAGE * - * 13.5.1 Thread Creation Scheduling Attributes, P1003.1c/Draft 10, p. 120 + * 13.5.1 Thread Creation Scheduling Parameters, P1003.1c/Draft 10, p. 120 */ int pthread_attr_setschedparam( - pthread_attr_t *attr, - const struct sched_param *param + pthread_attr_t *attr, + const struct sched_param *param ) { if ( !attr || !attr->is_initialized ) -- cgit v1.2.3