xref: /aosp_15_r20/external/musl/src/thread/pthread_attr_setschedparam.c (revision c9945492fdd68bbe62686c5b452b4dc1be3f8453)
1*c9945492SAndroid Build Coastguard Worker #include "pthread_impl.h"
2*c9945492SAndroid Build Coastguard Worker 
pthread_attr_setschedparam(pthread_attr_t * restrict a,const struct sched_param * restrict param)3*c9945492SAndroid Build Coastguard Worker int pthread_attr_setschedparam(pthread_attr_t *restrict a, const struct sched_param *restrict param)
4*c9945492SAndroid Build Coastguard Worker {
5*c9945492SAndroid Build Coastguard Worker 	a->_a_prio = param->sched_priority;
6*c9945492SAndroid Build Coastguard Worker 	return 0;
7*c9945492SAndroid Build Coastguard Worker }
8