diff options
author | rpj <rpj> | 2004-05-17 01:38:02 +0000 |
---|---|---|
committer | rpj <rpj> | 2004-05-17 01:38:02 +0000 |
commit | 771465fed0cf50ee2dd790723245fc091699c324 (patch) | |
tree | d8c18d095a33fe7c4564bd90c5f313bb9e4057dd /pthread_attr_setschedparam.c | |
parent | 8b14911744f58cbe3730703f3fcc41cd969fd0f3 (diff) |
re-indentation, bug fixes, hooks for pre-emptive async cancelation
Diffstat (limited to 'pthread_attr_setschedparam.c')
-rw-r--r-- | pthread_attr_setschedparam.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/pthread_attr_setschedparam.c b/pthread_attr_setschedparam.c index d7a0e70..d8b58bd 100644 --- a/pthread_attr_setschedparam.c +++ b/pthread_attr_setschedparam.c @@ -39,12 +39,12 @@ #include "sched.h" int -pthread_attr_setschedparam(pthread_attr_t *attr, - const struct sched_param *param) +pthread_attr_setschedparam (pthread_attr_t * attr, + const struct sched_param *param) { int priority; - if (ptw32_is_attr(attr) != 0 || param == NULL) + if (ptw32_is_attr (attr) != 0 || param == NULL) { return EINVAL; } @@ -52,12 +52,12 @@ pthread_attr_setschedparam(pthread_attr_t *attr, priority = param->sched_priority; /* Validate priority level. */ - if (priority < sched_get_priority_min(SCHED_OTHER) || - priority > sched_get_priority_max(SCHED_OTHER)) + if (priority < sched_get_priority_min (SCHED_OTHER) || + priority > sched_get_priority_max (SCHED_OTHER)) { return EINVAL; } - memcpy(&(*attr)->param, param, sizeof(*param)); + memcpy (&(*attr)->param, param, sizeof (*param)); return 0; } |