Beispiel #1
0
 internal SchedulingContext(int dispatcherTarget)
 {
     DispatcherTarget          = dispatcherTarget;
     ContextType               = SchedulingContextType.SystemThread;
     isLowPrioritySystemTarget = false;
 }
Beispiel #2
0
 internal SchedulingContext(SystemTarget systemTarget, bool lowPrioritySystemTarget)
 {
     SystemTarget = systemTarget;
     ContextType  = SchedulingContextType.SystemTarget;
     isLowPrioritySystemTarget = lowPrioritySystemTarget;
 }
Beispiel #3
0
 public SchedulingContext(ActivationData activation)
 {
     Activation  = activation;
     ContextType = SchedulingContextType.Activation;
     isLowPrioritySystemTarget = false;
 }
Beispiel #4
0
 internal SchedulingContext(int dispatcherTarget)
 {
     DispatcherTarget = dispatcherTarget;
     ContextType = SchedulingContextType.SystemThread;
     isLowPrioritySystemTarget = false;
 }
Beispiel #5
0
 internal SchedulingContext(SystemTarget systemTarget, bool lowPrioritySystemTarget)
 {
     SystemTarget = systemTarget;
     ContextType = SchedulingContextType.SystemTarget;
     isLowPrioritySystemTarget = lowPrioritySystemTarget;
 }
Beispiel #6
0
 public SchedulingContext(ActivationData activation)
 {
     Activation = activation;
     ContextType = SchedulingContextType.Activation;
     isLowPrioritySystemTarget = false;
 }