1 /* Definitions for POSIX 1003.1b-1993 (aka POSIX.4) scheduling interface.
2 Copyright (C) 1996, 1997, 1999 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Library General Public License for more details.
15 You should have received a copy of the GNU Library General Public
16 License along with the GNU C Library; see the file COPYING.LIB. If not,
17 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
25 /* Get type definitions. */
26 #include <bits/types.h>
28 #define __need_timespec
31 /* Get system specific constant and data structure definitions. */
32 #include <bits/sched.h>
36 /* Set scheduling parameters for a process. */
37 extern int sched_setparam (__pid_t __pid
, __const
struct sched_param
*__param
)
40 /* Retrieve scheduling parameters for a particular process. */
41 extern int sched_getparam (__pid_t __pid
, struct sched_param
*__param
) __THROW
;
43 /* Set scheduling algorithm and/or parameters for a process. */
44 extern int sched_setscheduler (__pid_t __pid
, int __policy
,
45 __const
struct sched_param
*__param
) __THROW
;
47 /* Retrieve scheduling algorithm for a particular purpose. */
48 extern int sched_getscheduler (__pid_t __pid
) __THROW
;
50 /* Yield the processor. */
51 extern int sched_yield (void) __THROW
;
53 /* Get maximum priority value for a scheduler. */
54 extern int sched_get_priority_max (int __algorithm
) __THROW
;
56 /* Get minimum priority value for a scheduler. */
57 extern int sched_get_priority_min (int __algorithm
) __THROW
;
59 /* Get the SCHED_RR interval for the named process. */
60 extern int sched_rr_get_interval (__pid_t __pid
, struct timespec
*__t
) __THROW
;