Beispiel #1
0
 public _Thread_202(ReliabilityTest _enclosing, Configuration conf, string jobClass
                    , string[] args, string baseArg1)
     : base(baseArg1)
 {
     this._enclosing = _enclosing;
     this.conf       = conf;
     this.jobClass   = jobClass;
     this.args       = args;
 }
Beispiel #2
0
 public KillTaskThread(ReliabilityTest _enclosing, JobClient jc, int thresholdMultiplier
                       , float threshold, bool onlyMapsProgress, int numIterations)
 {
     this._enclosing          = _enclosing;
     this.jc                  = jc;
     this.thresholdMultiplier = thresholdMultiplier;
     this.threshold           = threshold;
     this.onlyMapsProgress    = onlyMapsProgress;
     this.numIterations       = numIterations;
     this.SetDaemon(true);
 }
Beispiel #3
0
 public KillTrackerThread(ReliabilityTest _enclosing, JobClient jc, int threshaldMultiplier
                          , float threshold, bool onlyMapsProgress, int numIterations)
 {
     this._enclosing = _enclosing;
     //Only one instance must be active at any point
     this.jc = jc;
     this.thresholdMultiplier = threshaldMultiplier;
     this.threshold           = threshold;
     this.onlyMapsProgress    = onlyMapsProgress;
     this.numIterations       = numIterations;
     this.SetDaemon(true);
 }