about summary refs log tree commit diff
path: root/compat/time32/sched_rr_get_interval_time32.c
blob: 36cbbaca02f9105a33268c18739fce842500b236 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "time32.h"
#include <time.h>
#include <sched.h>

int __sched_rr_get_interval_time32(pid_t pid, struct timespec32 *ts32)
{
	struct timespec ts;
	int r = sched_rr_get_interval(pid, &ts);
	if (r) return r;
	ts32->tv_sec = ts.tv_sec;
	ts32->tv_nsec = ts.tv_nsec;
	return r;
}