Changeset 2128 for trunk/sources/HeuristicLab.CEDMA.Server/3.3
- Timestamp:
- 07/02/09 10:10:10 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.CEDMA.Server/3.3/GridExecuter.cs
r2125 r2128 114 114 // wait until any job is finished 115 115 private int WaitAny(WaitHandle[] wh, TimeSpan WaitForFinishedJobsTimeout) { 116 if (wh.Length >64) {116 if (wh.Length <= 64) { 117 117 return WaitHandle.WaitAny(wh, WaitForFinishedJobsTimeout); 118 118 } else {
Note: See TracChangeset
for help on using the changeset viewer.