summaryrefslogtreecommitdiff
path: root/src/thread/pthread_attr_getschedparam.c
blob: 5806bdf19cb0f27c4c9bf5b8fedcb21c8a487132 (plain) (blame)
1
2
3
4
5
6
7
#include "pthread_impl.h"

int pthread_attr_getschedparam(const pthread_attr_t *restrict a, struct sched_param *restrict param)
{
	param->sched_priority = 0;
	return 0;
}