Changeset 869 for DCWoRMS/trunk/src/schedframe/resources/computing
- Timestamp:
- 02/15/13 12:09:02 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
DCWoRMS/trunk/src/schedframe/resources/computing/Processor.java
r756 r869 4 4 import java.util.Properties; 5 5 6 import schedframe.resources.ResourceStatus; 6 7 import schedframe.resources.StandardResourceType; 7 8 import schedframe.resources.computing.description.ComputingResourceDescription; … … 36 37 } 37 38 39 @SuppressWarnings("unchecked") 40 public List<Core> getFreeCores(){ 41 return (List<Core>) getDescendantsByTypeAndStatus(StandardResourceType.Core, ResourceStatus.FREE); 42 } 43 38 44 public int getMIPS(){ 39 45 int mips;
Note: See TracChangeset
for help on using the changeset viewer.