Changeset 74252 in vbox
- Timestamp:
- Sep 13, 2018 5:22:06 PM (6 years ago)
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/dbg/dbgstackdumpself.cpp
r74235 r74252 95 95 * Internal Functions * 96 96 *********************************************************************************************************************************/ 97 /* Wanted to use DECLHIDDEN(DECLASM(size_t)) here, but early solaris 11 doesn't like it. */ 97 98 RT_C_DECLS_BEGIN 98 DECL ASM(DECLHIDDEN(size_t)) rtDbgStackDumpSelfWorker(char *pszStack, size_t cbStack, uint32_t fFlags, PCRTCCUINTREG pauRegs);99 DECLHIDDEN(DECLCALLBACK(size_t)) rtDbgStackDumpSelfWorker(char *pszStack, size_t cbStack, uint32_t fFlags, PCRTCCUINTREG pauRegs); 99 100 RT_C_DECLS_END 100 101 … … 360 361 * PC and us followed by the general purpose registers. 361 362 */ 362 DECL ASM(DECLHIDDEN(size_t)) rtDbgStackDumpSelfWorker(char *pszStack, size_t cbStack, uint32_t fFlags, PCRTCCUINTREG pauRegs)363 DECLHIDDEN(DECLCALLBACK(size_t)) rtDbgStackDumpSelfWorker(char *pszStack, size_t cbStack, uint32_t fFlags, PCRTCCUINTREG pauRegs) 363 364 { 364 365 RT_NOREF(fFlags); -
trunk/src/VBox/Runtime/tools/RTKrnlModInfo.cpp
r69434 r74252 49 49 return RTMsgInitFailure(rc); 50 50 51 /** @todo proper argument parsing, please. */ 52 if (argc != 1) 53 { 54 RTMsgError("Syntax error: This tool takes no parameters. It just lists the modules\n"); 55 return RTEXITCODE_SYNTAX; 56 } 57 51 58 RTEXITCODE rcExit = RTEXITCODE_SUCCESS; 52 59 uint32_t cKrnlMods = RTKrnlModLoadedGetCount();
Note:
See TracChangeset
for help on using the changeset viewer.