Changeset 487 in vbox
- Timestamp:
- Jan 31, 2007 11:15:55 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 18092
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/PC/DevRTC.cpp
r1 r487 69 69 #define RTC_CRC_LOW 0x2f 70 70 71 #ifndef VBOX_DEVICE_STRUCT_TESTCASE 71 72 /******************************************************************************* 72 73 * Internal Functions * … … 79 80 PDMBOTHCBDECL(void) rtcTimerSecond2(PPDMDEVINS pDevIns, PTMTIMER pTimer); 80 81 __END_DECLS 82 #endif /* !VBOX_DEVICE_STRUCT_TESTCASE */ 81 83 82 84 /*#define DEBUG_CMOS*/ … … 110 112 uint8_t cmos_data[128]; 111 113 uint8_t cmos_index; 114 uint8_t Alignment0[7]; 112 115 struct tm current_tm; 116 #if HC_ARCH_BITS == 64 && GC_ARCH_BITS == 32 && IN_GC 117 uint32_t Alignment1[3]; 118 #endif 113 119 int32_t irq; 114 120 /* periodic timer */ 121 PTMTIMERGC pPeriodicTimerGC; 115 122 PTMTIMERHC pPeriodicTimerHC; 116 PTMTIMERGC pPeriodicTimerGC;117 123 int64_t next_periodic_time; 118 124 /* second update */ … … 120 126 PTMTIMERHC pSecondTimerHC; 121 127 PTMTIMERGC pSecondTimerGC; 128 PTMTIMERGC pSecondTimer2GC; 122 129 PTMTIMERHC pSecondTimer2HC; 123 PTMTIMERGC pSecondTimer2GC;124 130 /** Pointer to the device instance - HC Ptr. */ 125 131 PPDMDEVINSHC pDevInsHC; … … 134 140 }; 135 141 142 #ifndef VBOX_DEVICE_STRUCT_TESTCASE 136 143 static void rtc_set_time(RTCState *s); 137 144 static void rtc_copy_date(RTCState *s); … … 948 955 }; 949 956 #endif /* IN_RING3 */ 950 957 #endif /* !VBOX_DEVICE_STRUCT_TESTCASE */ 958
Note:
See TracChangeset
for help on using the changeset viewer.