Changeset 53175 in vbox
- Timestamp:
- Nov 2, 2014 12:17:39 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/log/log.cpp
r53173 r53175 105 105 unsigned iGroup; 106 106 } RTLOGOUTPUTPREFIXEDARGS, *PRTLOGOUTPUTPREFIXEDARGS; 107 108 #ifndef IN_RC 107 109 108 110 /** … … 174 176 /** @} */ 175 177 176 # ifdef IN_RING3 /* Note! Must be at the end! */178 # ifdef IN_RING3 /* Note! Must be at the end! */ 177 179 /** @name File logging bits for the logger. 178 180 * @{ */ … … 198 200 char szFilename[RTPATH_MAX]; 199 201 /** @} */ 200 # endif /* IN_RING3 */202 # endif /* IN_RING3 */ 201 203 } RTLOGGERINTERNAL; 202 204 203 205 /** The revision of the internal logger structure. */ 204 # define RTLOGGERINTERNAL_REV UINT32_C(10)205 206 # ifdef IN_RING3206 # define RTLOGGERINTERNAL_REV UINT32_C(10) 207 208 # ifdef IN_RING3 207 209 /** The size of the RTLOGGERINTERNAL structure in ring-0. */ 208 # define RTLOGGERINTERNAL_R0_SIZE RT_OFFSETOF(RTLOGGERINTERNAL, pfnPhase)210 # define RTLOGGERINTERNAL_R0_SIZE RT_OFFSETOF(RTLOGGERINTERNAL, pfnPhase) 209 211 AssertCompileMemberAlignment(RTLOGGERINTERNAL, hFile, sizeof(void *)); 210 212 AssertCompileMemberAlignment(RTLOGGERINTERNAL, cbHistoryFileMax, sizeof(uint64_t)); 211 # endif213 # endif 212 214 AssertCompileMemberAlignment(RTLOGGERINTERNAL, cbRingBufUnflushed, sizeof(uint64_t)); 215 216 #endif /* !IN_RC */ 213 217 214 218
Note:
See TracChangeset
for help on using the changeset viewer.