Support Intel processor model 6 and model 0x2.
[glibc.git] / bits / sched.h
bloba068e5016194b94be92688825b3d093b181bfce2
1 /* Definitions of constants and data structure for POSIX 1003.1b-1993
2 scheduling interface.
3 Copyright (C) 1996, 1997, 2001, 2003, 2007 Free Software Foundation, Inc.
4 This file is part of the GNU C Library.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, write to the Free
18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 02111-1307 USA. */
21 #ifndef __need_schedparam
23 #ifndef _SCHED_H
24 # error "Never include <bits/sched.h> directly; use <sched.h> instead."
25 #endif
28 /* Scheduling algorithms. */
29 #define SCHED_OTHER 0
30 #define SCHED_FIFO 1
31 #define SCHED_RR 2
33 /* Data structure to describe a process' schedulability. */
34 struct sched_param
36 int __sched_priority;
39 #endif /* need schedparam */
41 #if !defined __defined_schedparam \
42 && (defined __need_schedparam || defined _SCHED_H)
43 # define __defined_schedparam 1
44 /* Data structure to describe a process' schedulability. */
45 struct __sched_param
47 int __sched_priority;
49 # undef __need_schedparam
50 #endif
53 #if defined _SCHED_H && !defined __cpu_set_t_defined
54 # define __cpu_set_t_defined
55 /* Size definition for CPU sets. */
56 # define __CPU_SETSIZE 1024
57 # define __NCPUBITS (8 * sizeof (__cpu_mask))
59 /* Type for array elements in 'cpu_set'. */
60 typedef unsigned long int __cpu_mask;
62 /* Basic access functions. */
63 # define __CPUELT(cpu) ((cpu) / __NCPUBITS)
64 # define __CPUMASK(cpu) ((__cpu_mask) 1 << ((cpu) % __NCPUBITS))
66 /* Data structure to describe CPU mask. */
67 typedef struct
69 __cpu_mask __bits[__CPU_SETSIZE / __NCPUBITS];
70 } cpu_set_t;
72 /* Access functions for CPU masks. */
73 # define __CPU_ZERO(cpusetp) \
74 do { \
75 unsigned int __i; \
76 cpu_set *__arr = (cpusetp); \
77 for (__i = 0; __i < sizeof (cpu_set) / sizeof (__cpu_mask); ++__i) \
78 __arr->__bits[__i] = 0; \
79 } while (0)
80 # define __CPU_SET(cpu, cpusetp) \
81 ((cpusetp)->__bits[__CPUELT (cpu)] |= __CPUMASK (cpu))
82 # define __CPU_CLR(cpu, cpusetp) \
83 ((cpusetp)->__bits[__CPUELT (cpu)] &= ~__CPUMASK (cpu))
84 # define __CPU_ISSET(cpu, cpusetp) \
85 (((cpusetp)->__bits[__CPUELT (cpu)] & __CPUMASK (cpu)) != 0)
87 __BEGIN_DECLS
89 extern int __sched_cpucount (size_t __setsize, const cpu_set_t *__setp)
90 __THROW;
92 __END_DECLS
94 # define __CPU_COUNT(cpusetp) \
95 __sched_cpucount (sizeof (cpu_set_t), cpusetp)
96 #endif