Changeset 48946 in vbox
- Timestamp:
- Oct 7, 2013 9:34:16 PM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 89643
- Location:
- trunk/src/VBox/Debugger
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Debugger/DBGPlugInCommonELF.cpp
-
Property svn:keywords
changed from
Id
toId Revision
-
Property svn:keywords
changed from
-
trunk/src/VBox/Debugger/DBGPlugInOS2.cpp
r44528 r48946 146 146 pThis->enmVer = DBGDIGGEROS2VER_2_x; 147 147 } 148 else if (pThis->OS2MinorVersion < 40) 148 else if (pThis->OS2MinorVersion < 40) 149 149 { 150 150 RTStrPrintf(pszOS2ProductType, sizeof(achOS2ProductType), "OS/2 Warp"); 151 151 pThis->enmVer = DBGDIGGEROS2VER_3_0; 152 152 } 153 else if (pThis->OS2MinorVersion == 40) 153 else if (pThis->OS2MinorVersion == 40) 154 154 { 155 155 RTStrPrintf(pszOS2ProductType, sizeof(achOS2ProductType), "OS/2 Warp 4"); … … 274 274 } u; 275 275 276 /* 276 /* 277 277 * If the DWORD at 70:0 contains 'SAS ' it's quite unlikely that this wouldn't be OS/2. 278 278 * Note: The SAS layout is similar between 16-bit and 32-bit OS/2, but not identical. 279 * 32-bit OS/2 will have the flat kernel data selector at SAS:06. The selector is 168h 280 * or similar. For 16-bit OS/2 the field contains a table offset into the SAS which will 281 * be much smaller. Fun fact: The global infoseg selector in the SAS is bimodal in 16-bit 282 * OS/2 and will work in real mode as well. 279 * 32-bit OS/2 will have the flat kernel data selector at SAS:06. The selector is 168h 280 * or similar. For 16-bit OS/2 the field contains a table offset into the SAS which will 281 * be much smaller. Fun fact: The global infoseg selector in the SAS is bimodal in 16-bit 282 * OS/2 and will work in real mode as well. 283 283 */ 284 284 do { … … 291 291 if (u.au32[0] != DIG_OS2_SAS_SIG) 292 292 break; 293 293 294 294 /* This sure looks like OS/2, but a bit of paranoia won't hurt. */ 295 295 if (u.au16[2] >= u.au16[4]) -
trunk/src/VBox/Debugger/DBGPlugInSolaris.cpp
-
Property svn:keywords
changed from
Id
toId Revision
-
Property svn:keywords
changed from
-
trunk/src/VBox/Debugger/VBoxDbgBase.cpp
r44528 r48946 161 161 162 162 VBoxDbgBaseWindow::VBoxDbgBaseWindow(VBoxDbgGui *a_pDbgGui, QWidget *a_pParent) 163 : QWidget(a_pParent, Qt::Window), VBoxDbgBase(a_pDbgGui), m_fPolished(false), 163 : QWidget(a_pParent, Qt::Window), VBoxDbgBase(a_pDbgGui), m_fPolished(false), 164 164 m_x(INT_MAX), m_y(INT_MAX), m_cx(0), m_cy(0) 165 165 { -
trunk/src/VBox/Debugger/VBoxDbgConsole.h
r44528 r48946 54 54 * unless the previous char was a newline ('\n'). 55 55 * 56 * @param rStr The text string to append. 57 * @param fClearSelection Whether to clear selected text before appending. 56 * @param rStr The text string to append. 57 * @param fClearSelection Whether to clear selected text before appending. 58 58 * If @c false the selection and window position 59 59 * are preserved. -
trunk/src/VBox/Debugger/testcase/tstDBGCStubs.cpp
-
Property svn:keywords
changed from
Id
toId Revision
-
Property svn:keywords
changed from
Note:
See TracChangeset
for help on using the changeset viewer.