blob: 2c2b14c20da15268e920d724986ad8d363c75d29 [file] [log] [blame]
/*
* Copyright (c) 2004, QUALCOMM Inc. All rights reserved.
* Created by: abisain REMOVE-THIS AT qualcomm DOT com
* This file is licensed under the GPL license. For the full content
* of this license, see the COPYING file at the top level of this
* source tree.
* Test that pthread_attr_setinheritsched() sets the inheritance of
* policy and priority.
* Steps:
* 1. Create a pthread_attr struct using pthread_attr_init
* 2. Change main's priority and policy
* 3. Set the inherit sched in it by calling pthread_attr_setinheritsched
* 4. Create a new thread.
* 5. Check that it has correct priority and policy
*/
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include "posixtest.h"
#define TEST "4-2"
#define AREA "scheduler"
#define ERROR_PREFIX "unexpected error: " AREA " " TEST ": "
#define PRIORITY 20
#define POLICY SCHED_RR
/* Flags that the threads use to indicate events */
int policy_correct = -1;
int priority_correct = -1;
void *thread(void *tmp)
{
struct sched_param param;
int policy;
int rc = 0;
rc = pthread_getschedparam(pthread_self(), &policy, &param);
if (rc != 0) {
printf(ERROR_PREFIX "pthread_getschedparam\n");
exit(PTS_UNRESOLVED);
}
if (policy == POLICY) {
policy_correct = 1;
}
if (param.sched_priority == PRIORITY) {
priority_correct = 1;
}
return NULL;
}
int main()
{
pthread_attr_t attr;
pthread_t thread_id;
struct sched_param param;
int rc = 0;
param.sched_priority = PRIORITY;
rc = pthread_setschedparam(pthread_self(), POLICY, &param);
if (rc != 0) {
printf(ERROR_PREFIX "pthread_setschedparam\n");
exit(PTS_UNRESOLVED);
}
rc = pthread_attr_init(&attr);
if (rc != 0) {
printf(ERROR_PREFIX "pthread_attr_init\n");
exit(PTS_UNRESOLVED);
}
rc = pthread_attr_setinheritsched(&attr, PTHREAD_INHERIT_SCHED);
if (rc != 0) {
printf(ERROR_PREFIX "pthread_attr_setinheritsched\n");
printf("Test FAILED\n");
exit(PTS_FAIL);
}
rc = pthread_create(&thread_id, &attr, thread, NULL);
if (rc != 0) {
printf(ERROR_PREFIX "pthread_create\n");
exit(PTS_UNRESOLVED);
}
rc = pthread_join(thread_id, NULL);
if (rc != 0) {
printf(ERROR_PREFIX "pthread_join\n");
exit(PTS_UNRESOLVED);
}
if ((priority_correct != 1) || (policy_correct != 1)) {
printf("Test FAIL\n");
exit(PTS_FAIL);
}
printf("Test PASSED\n");
exit(PTS_PASS);
}