Ignore:
Timestamp:
06/03/14 15:12:11 (11 years ago)
Author:
wojtekp
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • DCWoRMS/branches/coolemall/src/gridsim/dcworms/DCWormsTags.java

    r1316 r1362  
    3737         
    3838        public static final int POWER_LIMIT_EXCEEDED = DCWORMSBASE + 8; 
     39         
     40        public static final int TASK_PAUSE = DCWORMSBASE + 9; 
     41         
     42        public static final int TASK_RESUME = DCWORMSBASE + 10; 
     43         
     44        public static final int TASK_MOVE = DCWORMSBASE + 11; 
    3945 
    4046         
     
    4854 
    4955    public static final int INEXEC = 4; 
     56     
     57    public static final int NEW_EXEC_PHASE = 5; 
     58     
     59    public static final int PAUSED = 6; 
    5060 
    51     public static final int SUCCESS = 5; 
     61    public static final int RESUMED = 7; 
     62     
     63    public static final int SUCCESS = 8; 
    5264 
    53     public static final int FAILED = 6; 
     65    public static final int CANCELED = 9; 
    5466 
    55     public static final int CANCELED = 7; 
    56  
    57     public static final int PAUSED = 8; 
    58  
    59     public static final int RESUMED = 9; 
    60  
    61     public static final int NEW_EXEC_PHASE = 10; 
    62  
     67    public static final int FAILED = 10; 
    6368} 
Note: See TracChangeset for help on using the changeset viewer.