CINXE.COM

sched_setparam

<html> <head> <title>sched_setparam</title> <META NAME="KEYWORDS" CONTENT="sched_setparam"> </head> <body BGCOLOR="#ffffff" LINK="#0000ff" VLINK="#0000ff" ALINK="#0000ff" TEXT="#000000"> <center> <h1><b>sched_setparam</b></h1></center> <PRE> <STRONG><A HREF="/man2/SCHED_SETPARAM">SCHED_SETPARAM(2)</A></STRONG> Linux Programmer's Manual <STRONG><A HREF="/man2/SCHED_SETPARAM">SCHED_SETPARAM(2)</A></STRONG> NAME sched_setparam, sched_getparam - set and get scheduling parameters SYNOPSIS #include &lt;sched.h&gt; int sched_setparam(pid_t pid, const struct sched_param *param); int sched_getparam(pid_t pid, struct sched_param *param); struct sched_param { ... int sched_priority; ... }; DESCRIPTION sched_setparam() sets the scheduling parameters associated with the scheduling policy for the thread whose thread ID is specified in pid. If pid is zero, then the parameters of the calling thread are set. The interpretation of the argument param depends on the scheduling policy of the thread identified by pid. See <STRONG><A HREF="/man7/sched">sched(7)</A></STRONG> for a description of the scheduling policies supported under Linux. sched_getparam() retrieves the scheduling parameters for the thread identified by pid. If pid is zero, then the parameters of the calling thread are retrieved. sched_setparam() checks the validity of param for the scheduling policy of the thread. The value param-&gt;sched_priority must lie within the range given by <STRONG><A HREF="/man2/sched_get_priority_min">sched_get_priority_min(2)</A></STRONG> and <STRONG><A HREF="/man2/sched_get_priority_max">sched_get_priority_max(2)</A></STRONG>. For a discussion of the privileges and resource limits related to scheduling priority and policy, see <STRONG><A HREF="/man7/sched">sched(7)</A></STRONG>. POSIX systems on which sched_setparam() and sched_getparam() are avail- able define _POSIX_PRIORITY_SCHEDULING in &lt;unistd.h&gt;. RETURN VALUE On success, sched_setparam() and sched_getparam() return 0. On error, -1 is returned, and errno is set appropriately. ERRORS EINVAL Invalid arguments: param is NULL or pid is negative EINVAL (sched_setparam()) The argument param does not make sense for the current scheduling policy. EPERM (sched_setparam()) The caller does not have appropriate privi- leges (Linux: does not have the CAP_SYS_NICE capability). ESRCH The thread whose ID is pid could not be found. CONFORMING TO POSIX.1-2001, POSIX.1-2008. SEE ALSO <STRONG><A HREF="/man2/getpriority">getpriority(2)</A></STRONG>, <STRONG><A HREF="/man2/gettid">gettid(2)</A></STRONG>, <STRONG><A HREF="/man2/nice">nice(2)</A></STRONG>, <STRONG><A HREF="/man2/sched_get_priority_max">sched_get_priority_max(2)</A></STRONG>, <STRONG><A HREF="/man2/sched_get_priority_min">sched_get_priority_min(2)</A></STRONG>, <STRONG><A HREF="/man2/sched_getaffinity">sched_getaffinity(2)</A></STRONG>, <STRONG><A HREF="/man2/sched_getscheduler">sched_getscheduler(2)</A></STRONG>, <STRONG><A HREF="/man2/sched_setaffinity">sched_setaffinity(2)</A></STRONG>, <STRONG><A HREF="/man2/sched_setattr">sched_setattr(2)</A></STRONG>, <STRONG><A HREF="/man2/sched_setscheduler">sched_setscheduler(2)</A></STRONG>, <STRONG><A HREF="/man2/setpriority">setpriority(2)</A></STRONG>, <STRONG><A HREF="/man7/capabilities">capabilities(7)</A></STRONG>, <STRONG><A HREF="/man7/sched">sched(7)</A></STRONG> COLOPHON This page is part of release 5.05 of the Linux man-pages project. A description of the project, information about reporting bugs, and the latest version of this page, can be found at https://www.kernel.org/doc/man-pages/. Linux 2019-10-10 <STRONG><A HREF="/man2/SCHED_SETPARAM">SCHED_SETPARAM(2)</A></STRONG></PRE> <center> <h6>Man Pages Copyright Respective Owners. Site Copyright (C) 1994 - 2025 <a href="http://www.he.net">Hurricane Electric</a>. All Rights Reserved.</h6></center> </body> </html>

Pages: 1 2 3 4 5 6 7 8 9 10