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/sched_policy/bp.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 /*
    2  * HISTORY
    3  * $Log:        bp.h,v $
    4  * Revision 2.2  93/11/17  18:36:24  dbg
    5  *      Created.
    6  *      [93/06/09            dbg]
    7  * 
    8  */
    9 
   10 #ifndef _SCHED_POLICY_BP_H_
   11 #define _SCHED_POLICY_BP_H_
   12 
   13 /*
   14  *      Bound thread policy.
   15  *
   16  *      Each processor has a separate run queue for threads bound to
   17  *      that processor.  It is scanned as part of the normal run
   18  *      queue scan, in thread_select, but only if there are threads
   19  *      on that run queue.
   20  */
   21 
   22 #include <kern/kern_types.h>
   23 #include <kern/run_queues.h>
   24 
   25 #define BOUND_POLICY_INDEX      (NUM_POLICIES - 1)      /* last in runq */
   26 
   27 extern run_queue_t      bp_run_queue_alloc(processor_t);
   28 
   29 #endif  /* _SCHED_POLICY_BP_H_ */

Cache object: acecfe55f33858c161f12b5ab4a0c7ea


[ 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.