summaryrefslogtreecommitdiff
path: root/tests/xetpriority.c
blob: 64011873235471b3baf9b487150e08d616236c89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#include "tests.h"
#include <asm/unistd.h>

#if defined __NR_getpriority && defined __NR_setpriority

# include <stdio.h>
# include <sys/resource.h>
# include <unistd.h>

int
main(void)
{
	const int pid = getpid();
	long rc = syscall(__NR_getpriority, PRIO_PROCESS,
			  (unsigned long) 0xffffffff00000000 | pid);
	printf("getpriority(PRIO_PROCESS, %d) = %ld\n", pid, rc);

	rc = syscall(__NR_setpriority, PRIO_PROCESS,
		     (unsigned long) 0xffffffff00000000 | pid,
		     (unsigned long) 0xffffffff00000000);
	if (rc)
		printf("setpriority(PRIO_PROCESS, %d, 0) = %ld %s (%m)\n",
		       pid, rc, errno2name());
	else
		printf("setpriority(PRIO_PROCESS, %d, 0) = 0\n", pid);

	puts("+++ exited with 0 +++");
	return 0;
}

#else

SKIP_MAIN_UNDEFINED("__NR_getpriority && _NR_setpriority")

#endif