
{ This deck defines the type for the variable which is used to control the
{ selection of tasks to be dispatched for CPU execution.
{ NOTE:  The selection procedure is written in ASSEMBLY LANGUAGE.  This type
{ CANNOT be changed without changes to the assembly language code which uses it.

  TYPE
    tmt$dispatching_control_sets = RECORD
      enforce_maximums: jmt$dispatching_priority_set,
      minimums_to_satisfy: jmt$dispatching_priority_set,
      ready_tasks: jmt$dispatching_priority_set,
      maximums_exceeded: jmt$dispatching_priority_set,
    RECEND;

*copyc jmt$dispatching_priority_set

