Changeset 11292 in vbox
- Timestamp:
- Aug 8, 2008 10:43:58 PM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 34385
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/pdm.h
r8155 r11292 41 41 #include <VBox/pdmsrv.h> 42 42 43 /** Source position.44 * @deprecated Use RT_SRC_POS */45 #define PDM_SRC_POS RT_SRC_POS46 47 /** Source position declaration.48 * @deprecated Use RT_SRC_POS_DECL */49 #define PDM_SRC_POS_DECL RT_SRC_POS_DECL50 51 /** Source position arguments.52 * @deprecated Use RT_SRC_POS_ARGS */53 #define PDM_SRC_POS_ARGS RT_SRC_POS_ARGS54 55 43 #endif 56 44 -
trunk/src/VBox/Devices/PC/DevPcArch.c
r11254 r11292 64 64 int rc; 65 65 NOREF(pvUser); NOREF(pDevIns); NOREF(pu32); 66 rc = PDMDeviceDBGFStop(pDevIns, PDM_SRC_POS, "Port=%#x cb=%d\n", Port, cb);66 rc = PDMDeviceDBGFStop(pDevIns, RT_SRC_POS, "Port=%#x cb=%d\n", Port, cb); 67 67 if (rc == VINF_SUCCESS) 68 68 rc = VERR_IOM_IOPORT_UNUSED; … … 98 98 #if 0 99 99 if (!u32) 100 rc = PDMDeviceDBGFStop(pDevIns, PDM_SRC_POS, "Port=%#x cb=%d u32=%#x\n", Port, cb, u32);100 rc = PDMDeviceDBGFStop(pDevIns, RT_SRC_POS, "Port=%#x cb=%d u32=%#x\n", Port, cb, u32); 101 101 #endif 102 102 /* pDevIns->pDevHlp->pfnPICSetIrq(pDevIns, 13, 0); */ … … 115 115 case 0xfc: 116 116 default: 117 rc = PDMDeviceDBGFStop(pDevIns, PDM_SRC_POS, "Port=%#x cb=%d u32=%#x\n", Port, cb, u32);117 rc = PDMDeviceDBGFStop(pDevIns, RT_SRC_POS, "Port=%#x cb=%d u32=%#x\n", Port, cb, u32); 118 118 break; 119 119 } … … 122 122 } 123 123 else 124 rc = PDMDeviceDBGFStop(pDevIns, PDM_SRC_POS, "Port=%#x cb=%d u32=%#x\n", Port, cb, u32);124 rc = PDMDeviceDBGFStop(pDevIns, RT_SRC_POS, "Port=%#x cb=%d u32=%#x\n", Port, cb, u32); 125 125 return rc; 126 126 } … … 175 175 return VINF_SUCCESS; 176 176 } 177 return PDMDeviceDBGFStop(pDevIns, PDM_SRC_POS, "Port=%#x cb=%d\n", Port, cb);177 return PDMDeviceDBGFStop(pDevIns, RT_SRC_POS, "Port=%#x cb=%d\n", Port, cb); 178 178 } 179 179 … … 208 208 return VINF_SUCCESS; 209 209 } 210 return PDMDeviceDBGFStop(pDevIns, PDM_SRC_POS, "Port=%#x cb=%d u32=%#x\n", Port, cb, u32);210 return PDMDeviceDBGFStop(pDevIns, RT_SRC_POS, "Port=%#x cb=%d u32=%#x\n", Port, cb, u32); 211 211 } 212 212
Note:
See TracChangeset
for help on using the changeset viewer.