Changeset 74252 in vbox for trunk/src/VBox/Runtime/common
- Timestamp:
- Sep 13, 2018 5:22:06 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 125046
- File:
-
- 1 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);
Note:
See TracChangeset
for help on using the changeset viewer.