Changeset 85126 in vbox for trunk/src/VBox/Runtime/common/dbg
- Timestamp:
- Jul 8, 2020 11:04:57 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/dbg/dbgstackdumpself.cpp
r82968 r85126 102 102 /* Wanted to use DECLHIDDEN(DECLASM(size_t)) here, but early solaris 11 doesn't like it. */ 103 103 RT_C_DECLS_BEGIN 104 DECL HIDDEN(DECLCALLBACK(size_t)) rtDbgStackDumpSelfWorker(char *pszStack, size_t cbStack, uint32_t fFlags, PCRTCCUINTREG pauRegs);104 DECL_HIDDEN_CALLBACK(size_t) rtDbgStackDumpSelfWorker(char *pszStack, size_t cbStack, uint32_t fFlags, PCRTCCUINTREG pauRegs); 105 105 RT_C_DECLS_END 106 106 … … 406 406 * PC and us followed by the general purpose registers. 407 407 */ 408 DECL HIDDEN(DECLCALLBACK(size_t)) rtDbgStackDumpSelfWorker(char *pszStack, size_t cbStack, uint32_t fFlags, PCRTCCUINTREG pauRegs)408 DECL_HIDDEN_CALLBACK(size_t) rtDbgStackDumpSelfWorker(char *pszStack, size_t cbStack, uint32_t fFlags, PCRTCCUINTREG pauRegs) 409 409 { 410 410 RT_NOREF(fFlags);
Note:
See TracChangeset
for help on using the changeset viewer.