Changeset 76784 in vbox
- Timestamp:
- Jan 11, 2019 5:31:11 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Debugger/DBGPlugInOS2.cpp
r76692 r76784 485 485 return; 486 486 } 487 pHlp->pfnPrintf(pHlp, " Flat kernel DS: %#06x\n", Sas.SAS_flat_sel);487 dbgDiggerOS2DisplaySelectorAndInfo(pThis, pHlp, Sas.SAS_flat_sel, UINT32_MAX, 15, "Flat kernel DS"); 488 488 pHlp->pfnPrintf(pHlp, "SAS_tables_data: %#06x (%#RGv)\n", Sas.SAS_tables_data, SelInfo.GCPtrBase + Sas.SAS_tables_data); 489 489 pHlp->pfnPrintf(pHlp, "SAS_config_data: %#06x (%#RGv)\n", Sas.SAS_config_data, SelInfo.GCPtrBase + Sas.SAS_config_data); … … 1132 1132 * Register info handlers. 1133 1133 */ 1134 DBGFR3InfoRegisterExternal(pUVM, "sas", "Dumps the OS/2 system anchor block (SAS) ", dbgDiggerOS2InfoSas, pThis);1135 DBGFR3InfoRegisterExternal(pUVM, "gis", "Dumps the OS/2 global info segment (GIS) ", dbgDiggerOS2InfoGis, pThis);1136 DBGFR3InfoRegisterExternal(pUVM, "lis", "Dumps the OS/2 local info segment (current process) ", dbgDiggerOS2InfoLis, pThis);1137 DBGFR3InfoRegisterExternal(pUVM, "panic", "Dumps the OS/2 system panic message ", dbgDiggerOS2InfoPanic, pThis);1134 DBGFR3InfoRegisterExternal(pUVM, "sas", "Dumps the OS/2 system anchor block (SAS).", dbgDiggerOS2InfoSas, pThis); 1135 DBGFR3InfoRegisterExternal(pUVM, "gis", "Dumps the OS/2 global info segment (GIS).", dbgDiggerOS2InfoGis, pThis); 1136 DBGFR3InfoRegisterExternal(pUVM, "lis", "Dumps the OS/2 local info segment (current process).", dbgDiggerOS2InfoLis, pThis); 1137 DBGFR3InfoRegisterExternal(pUVM, "panic", "Dumps the OS/2 system panic message.", dbgDiggerOS2InfoPanic, pThis); 1138 1138 1139 1139 return VINF_SUCCESS;
Note:
See TracChangeset
for help on using the changeset viewer.