summaryrefslogtreecommitdiffstats
path: root/c/src/exec/posix/src/pthread.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1996-08-01 19:24:57 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1996-08-01 19:24:57 +0000
commit22b4b2e0d281d0612d1e9b0bb479463580097ee0 (patch)
tree67488b0f4ccecf3a4832d820d5a4f09c7d93206d /c/src/exec/posix/src/pthread.c
parentadded 3 nops following write to wim since a restore following it is (diff)
downloadrtems-22b4b2e0d281d0612d1e9b0bb479463580097ee0.tar.bz2
added page delimiters for comment blocks
Diffstat (limited to 'c/src/exec/posix/src/pthread.c')
-rw-r--r--c/src/exec/posix/src/pthread.c13
1 files changed, 9 insertions, 4 deletions
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 )