Changeset 65897 in vbox for trunk/src/VBox/VMM/VMMR3
- Timestamp:
- Feb 28, 2017 2:34:11 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR3/TM.cpp
r65896 r65897 2631 2631 if (RT_FAILURE(rc)) 2632 2632 return rc; 2633 #if 1 /* Workaround for accidental state shift in r47786 (2009-05-26 19:12:12). */ /** @todo remove this in a few weeks! */ 2633 2634 /* TMTIMERSTATE_SAVED_XXX: Workaround for accidental state shift in r47786 (2009-05-26 19:12:12). */ 2634 2635 if ( u8State == TMTIMERSTATE_SAVED_PENDING_STOP + 1 2635 2636 || u8State == TMTIMERSTATE_SAVED_PENDING_SCHEDULE + 1) 2636 2637 u8State--; 2637 #endif 2638 2638 2639 if ( u8State != TMTIMERSTATE_SAVED_PENDING_STOP 2639 2640 && u8State != TMTIMERSTATE_SAVED_PENDING_SCHEDULE) … … 2709 2710 if (RT_FAILURE(rc)) 2710 2711 return rc; 2711 #if 1 /* Workaround for accidental state shift in r47786 (2009-05-26 19:12:12). */ /** @todo remove this in a few weeks! */ 2712 2713 /* TMTIMERSTATE_SAVED_XXX: Workaround for accidental state shift in r47786 (2009-05-26 19:12:12). */ 2712 2714 if ( u8State == TMTIMERSTATE_SAVED_PENDING_STOP + 1 2713 2715 || u8State == TMTIMERSTATE_SAVED_PENDING_SCHEDULE + 1) 2714 2716 u8State--; 2715 #endif 2717 2716 2718 if ( u8State != TMTIMERSTATE_SAVED_PENDING_STOP 2717 2719 && u8State != TMTIMERSTATE_SAVED_PENDING_SCHEDULE) … … 2729 2731 uint64_t u64Expire; 2730 2732 rc = SSMR3GetU64(pSSM, &u64Expire); 2731 if (RT_FAILURE(rc)) 2732 return rc; 2733 } 2734 2735 /* 2736 * On failure set SSM status. 2737 */ 2738 if (RT_FAILURE(rc)) 2739 rc = SSMR3HandleSetStatus(pSSM, rc); 2733 } 2734 2740 2735 return rc; 2741 2736 }
Note:
See TracChangeset
for help on using the changeset viewer.