Changeset 38876 in vbox for trunk/src/VBox/Storage/Debug
- Timestamp:
- Sep 27, 2011 9:03:15 AM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 74198
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Storage/Debug/VDDbgIoLog.cpp
r38644 r38876 449 449 } 450 450 451 VBOXDDU_DECL(int) VDDbgIoLogStartDiscard(VDIOLOGGER hIoLogger, bool fAsync, P VDRANGE paRanges, unsigned cRanges,451 VBOXDDU_DECL(int) VDDbgIoLogStartDiscard(VDIOLOGGER hIoLogger, bool fAsync, PCRTRANGE paRanges, unsigned cRanges, 452 452 PVDIOLOGENT phIoLogEntry) 453 453 { … … 697 697 698 698 VBOXDDU_DECL(int) VDDbgIoLogEventGetStartDiscard(VDIOLOGGER hIoLogger, uint64_t *pidEvent, bool *pfAsync, 699 P VDRANGE *ppaRanges, unsigned *pcRanges)699 PRTRANGE *ppaRanges, unsigned *pcRanges) 700 700 { 701 701 int rc = VINF_SUCCESS; … … 716 716 if (RT_SUCCESS(rc)) 717 717 { 718 P VDRANGE paRanges = NULL;718 PRTRANGE paRanges = NULL; 719 719 IoLogEntryDiscard DiscardRange; 720 720 … … 724 724 *pcRanges = RT_LE2H_U32(Entry.Discard.cRanges); 725 725 726 paRanges = (P VDRANGE)RTMemAllocZ(*pcRanges * sizeof(VDRANGE));726 paRanges = (PRTRANGE)RTMemAllocZ(*pcRanges * sizeof(RTRANGE)); 727 727 if (paRanges) 728 728 {
Note:
See TracChangeset
for help on using the changeset viewer.