Changeset 40820 in vbox for trunk/include/VBox
- Timestamp:
- Apr 7, 2012 9:01:54 PM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 77335
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/sup.h
r40777 r40820 1144 1144 */ 1145 1145 SUPR3DECL(int) SUPR3QueryVTCaps(uint32_t *pfCaps); 1146 1147 /** 1148 * Open the tracer. 1149 * 1150 * @returns VBox status code. 1151 * @param uCookie Cookie identifying the tracer we expect to talk to. 1152 * @param uArg Tracer specific open argument. 1153 */ 1154 SUPR3DECL(int) SUPR3TracerOpen(uint32_t uCookie, uintptr_t uArg); 1155 1156 /** 1157 * Closes the tracer. 1158 * 1159 * @returns VBox status code. 1160 */ 1161 SUPR3DECL(int) SUPR3TracerClose(void); 1162 1163 /** 1164 * Perform an I/O request on the tracer. 1165 * 1166 * @returns VBox status. 1167 * @param uCmd The tracer command. 1168 * @param uArg The argument. 1169 * @param piRetVal Where to store the tracer return value. 1170 */ 1171 SUPR3DECL(int) SUPR3TracerIoCtl(uintptr_t uCmd, uintptr_t uArg, int32_t *piRetVal); 1146 1172 1147 1173 /** @} */
Note:
See TracChangeset
for help on using the changeset viewer.