The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/kernel/sched_cpupri.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 #ifndef _LINUX_CPUPRI_H
    2 #define _LINUX_CPUPRI_H
    3 
    4 #include <linux/sched.h>
    5 
    6 #define CPUPRI_NR_PRIORITIES    (MAX_RT_PRIO + 2)
    7 #define CPUPRI_NR_PRI_WORDS     BITS_TO_LONGS(CPUPRI_NR_PRIORITIES)
    8 
    9 #define CPUPRI_INVALID -1
   10 #define CPUPRI_IDLE     0
   11 #define CPUPRI_NORMAL   1
   12 /* values 2-101 are RT priorities 0-99 */
   13 
   14 struct cpupri_vec {
   15         raw_spinlock_t lock;
   16         int        count;
   17         cpumask_var_t mask;
   18 };
   19 
   20 struct cpupri {
   21         struct cpupri_vec pri_to_cpu[CPUPRI_NR_PRIORITIES];
   22         long              pri_active[CPUPRI_NR_PRI_WORDS];
   23         int               cpu_to_pri[NR_CPUS];
   24 };
   25 
   26 #ifdef CONFIG_SMP
   27 int  cpupri_find(struct cpupri *cp,
   28                  struct task_struct *p, struct cpumask *lowest_mask);
   29 void cpupri_set(struct cpupri *cp, int cpu, int pri);
   30 int cpupri_init(struct cpupri *cp);
   31 void cpupri_cleanup(struct cpupri *cp);
   32 #else
   33 #define cpupri_set(cp, cpu, pri) do { } while (0)
   34 #define cpupri_init() do { } while (0)
   35 #endif
   36 
   37 #endif /* _LINUX_CPUPRI_H */

Cache object: 81c89bc7a6d9a2ed1a3fe0d9e7e5ecf3


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.