Upload Tizen:Base source
[external/eglibc.git] / bits / sched.h
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.
5
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.
10
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.
15
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.  */
20
21 #ifndef __need_schedparam
22
23 #ifndef _SCHED_H
24 # error "Never include <bits/sched.h> directly; use <sched.h> instead."
25 #endif
26
27
28 /* Scheduling algorithms.  */
29 #define SCHED_OTHER     0
30 #define SCHED_FIFO      1
31 #define SCHED_RR        2
32
33 /* Data structure to describe a process' schedulability.  */
34 struct sched_param
35 {
36   int __sched_priority;
37 };
38
39 #endif  /* need schedparam */
40
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
46   {
47     int __sched_priority;
48   };
49 # undef __need_schedparam
50 #endif
51
52
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))
58
59 /* Type for array elements in 'cpu_set'.  */
60 typedef unsigned long int __cpu_mask;
61
62 /* Basic access functions.  */
63 # define __CPUELT(cpu)  ((cpu) / __NCPUBITS)
64 # define __CPUMASK(cpu) ((__cpu_mask) 1 << ((cpu) % __NCPUBITS))
65
66 /* Data structure to describe CPU mask.  */
67 typedef struct
68 {
69   __cpu_mask __bits[__CPU_SETSIZE / __NCPUBITS];
70 } cpu_set_t;
71
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)
86
87 __BEGIN_DECLS
88
89 extern int __sched_cpucount (size_t __setsize, const cpu_set_t *__setp)
90      __THROW;
91
92 __END_DECLS
93
94 # define __CPU_COUNT(cpusetp) \
95   __sched_cpucount (sizeof (cpu_set_t), cpusetp)
96 #endif