File: test-schedbatch.c

package info (click to toggle)
procps 1%3A3.3.3-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 3,608 kB
  • sloc: ansic: 18,401; sh: 12,037; makefile: 315; exp: 226; sed: 16
file content (41 lines) | stat: -rw-r--r-- 944 bytes parent folder | download
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
36
37
38
39
40
41
/* test-schedbatch.c - Create a process using SCHED_BATCH scheduler
 * policy and nice value.
 * Compile: gcc -o test-schedbatch -Wall test-schedbatch.c
 * Usage:   ./test-schedbatch [ <NICE> ]
 *
 * Author: Mike Fleetwood
 * https://bugzilla.redhat.com/show_bug.cgi?id=741090
 */

#define _GNU_SOURCE
#include <stdlib.h>
#include <stdio.h>
#include <errno.h>
#include <sched.h>
#include <sys/time.h>
#include <sys/resource.h>

int main(int argc, const char *argv[])
{
	int nice = 19;
	struct sched_param sp;
	char msg[50];

	if (argc >= 2) {
		nice = atoi(argv[1]);
	}
	sp.sched_priority = 0;
#ifdef SCHED_BATCH
	if (sched_setscheduler(0, SCHED_BATCH, &sp)) {
		perror("sched_setscheduler(0,SCHED_BATCH,{.sched_priority=0}");
	}
#endif /* SCHED_BATCH */
	if (setpriority(PRIO_PROCESS, 0, nice) || errno) {
		(void)snprintf(msg, sizeof(msg),
			       "setpriority(PRIO_PROCESS, 0, %d)", nice);
		perror(msg);
	}
	while (1) {
		getchar();
	}
}