summaryrefslogtreecommitdiffstats
path: root/rules/schedutils.in
blob: 3f38903c1b43da246e3d6c9ca53646886f9f18bb (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

menuconfig SCHEDUTILS
	tristate
	prompt "schedutils                    "
	help
	  These are the Linux scheduler utilities - schedutils for short. These programs
	  take advantage of the scheduler family of syscalls that Linux implements across
	  various kernels. These system calls implement interfaces for scheduler-related
	  parameters such as CPU affinity and real-time attributes. The standard UNIX
	  utilities do not provide support for these interfaces -- thus this package.

if SCHEDUTILS

config SCHEDUTILS_CHRT
	bool
	prompt "chrt"
	help
	  chrt manipulates the real-time attributes of a process.

config SCHEDUTILS_IONICE
	bool
	prompt "ionice"
	help
	  ionice gets/sets the program io scheduling class and priority.

config SCHEDUTILS_TASKSET
	bool
	prompt "taskset"
	help
	  taskset retrieves or sets a process's CPU affinity.

endif