Last time I wrote about how-to set or retrieve the CPU affinity of a running process given its PID or to launch a new COMMAND with a given CPU affinity.
If you are looking to sets or retrieves the real-time scheduling attributes of an existing PID or want to runs COMMAND with the given attributes then I recommend to use chrt command.
nice command run a program with modified scheduling priority however chrt is much more than nice command. chrt allows to set your scheduling policy as well as priority.
Currently, the following three scheduling policies are supported under Linux:
- SCHED_FIFO: First In-First Out scheduling
- SCHED_RR: Round Robin scheduling
- SCHED_OTHER: Default Linux time-sharing scheduling
But what is scheduler?
The scheduler is the Linux kernel part that decides which runnable process will be executed by the CPU next. As I said earlier Linux offers three scheduling policies. One is for normal process and can be changes using nice or chrt command (or use system calls under C).
Discussion related to Linux scheduler and policies are beyond the scope of this post but I recommend following two textbooks for in-depth understanding of this topic:
- Programming for the real world - POSIX.4 by Bill O. Gallmeister, O'Reilly & Associates, Inc.
- Understanding the Linux Kernel, Second Edition by Daniel P. Bovet, Marco Cesati, O'Reilly & Associates, Inc.
Let us get back to chrt command. You can retrieve the real-time attributes of an existing task/pid with following command:
$ chrt -p 1
Output:
pid 1's current scheduling policy: SCHED_OTHER pid 1's current scheduling priority: 0
Set process (PID 5124) to 5 priority: remember priority range from -20 (most favorable scheduling) to 19 (least favorable):
$ chrt -p 5 5124
You can retrieve minimum and maximum valid priorities with following command:
$ chrt -m
Output:
SCHED_FIFO min/max priority : 1/99 SCHED_RR min/max priority : 1/99 SCHED_OTHER min/max priority : 0/0
Set scheduling policy to SCHED_RR:
$ chrt -p -r 5124
Where:
- -f: Set scheduling policy to SCHED_FIFO
- -o: Set scheduling policy to SCHED_FIFO
- -r: Set scheduling policy to SCHED_RR
- -p: Operate on an existing PID and do not launch a new tas
See also:
- Read man page of chrt for more information.
- Please note that chrt command may be more useful if you are using real time Linux kernel.
Featured Articles:
- 20 Linux System Monitoring Tools Every SysAdmin Should Know
- 20 Linux Server Hardening Security Tips
- 10 Greatest Open Source Software Of 2009
- My 10 UNIX Command Line Mistakes
- Top 5 Email Client For Linux, Mac OS X, and Windows Users
- Top 20 OpenSSH Server Best Security Practices
- Top 10 Open Source Web-Based Project Management Software
- Top 5 Linux Video Editor Software
- Email this to a friend
- Download PDF version
- Printable version
- Comment RSS feed
- Last Updated: May/18/2006


{ 1 comment… read it below or add one }
hello,
-o: Set scheduling policy to SCHED_FIFO
should be
-o: Set scheduling policy to SCHED_OTHER