Changeset 85124 in vbox for trunk/src/VBox/Runtime/include/internal
- Timestamp:
- Jul 8, 2020 9:13:30 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 139064
- Location:
- trunk/src/VBox/Runtime/include/internal
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/include/internal/dbgmod.h
r85121 r85124 690 690 691 691 692 extern DECL HIDDEN(RTSTRCACHE)g_hDbgModStrCache;693 extern DECL HIDDEN(RTDBGMODVTDBG const)g_rtDbgModVtDbgCodeView;694 extern DECL HIDDEN(RTDBGMODVTDBG const)g_rtDbgModVtDbgDwarf;695 extern DECL HIDDEN(RTDBGMODVTDBG const)g_rtDbgModVtDbgNm;696 extern DECL HIDDEN(RTDBGMODVTDBG const)g_rtDbgModVtDbgMapSym;692 extern DECL_HIDDEN_DATA(RTSTRCACHE) g_hDbgModStrCache; 693 extern DECL_HIDDEN_DATA(RTDBGMODVTDBG const) g_rtDbgModVtDbgCodeView; 694 extern DECL_HIDDEN_DATA(RTDBGMODVTDBG const) g_rtDbgModVtDbgDwarf; 695 extern DECL_HIDDEN_DATA(RTDBGMODVTDBG const) g_rtDbgModVtDbgNm; 696 extern DECL_HIDDEN_DATA(RTDBGMODVTDBG const) g_rtDbgModVtDbgMapSym; 697 697 #ifdef RT_OS_WINDOWS 698 extern DECL HIDDEN(RTDBGMODVTDBG const)g_rtDbgModVtDbgDbgHelp;698 extern DECL_HIDDEN_DATA(RTDBGMODVTDBG const) g_rtDbgModVtDbgDbgHelp; 699 699 #endif 700 extern DECL HIDDEN(RTDBGMODVTDBG const)g_rtDbgModVtDbgDeferred;701 extern DECL HIDDEN(RTDBGMODVTDBG const)g_rtDbgModVtDbgContainer;702 703 extern DECL HIDDEN(RTDBGMODVTIMG const)g_rtDbgModVtImgLdr;704 extern DECL HIDDEN(RTDBGMODVTIMG const)g_rtDbgModVtImgDeferred;700 extern DECL_HIDDEN_DATA(RTDBGMODVTDBG const) g_rtDbgModVtDbgDeferred; 701 extern DECL_HIDDEN_DATA(RTDBGMODVTDBG const) g_rtDbgModVtDbgContainer; 702 703 extern DECL_HIDDEN_DATA(RTDBGMODVTIMG const) g_rtDbgModVtImgLdr; 704 extern DECL_HIDDEN_DATA(RTDBGMODVTIMG const) g_rtDbgModVtImgDeferred; 705 705 706 706 DECLHIDDEN(int) rtDbgModContainerCreate(PRTDBGMODINT pMod, RTUINTPTR cbSeg); -
trunk/src/VBox/Runtime/include/internal/dvm.h
r85121 r85124 330 330 } 331 331 332 extern DECL_HIDDEN_DATA(const RTDVMFMTOPS) g_rtDvmFmtMbr; 333 extern DECL_HIDDEN_DATA(const RTDVMFMTOPS) g_rtDvmFmtGpt; 334 extern DECL_HIDDEN_DATA(const RTDVMFMTOPS) g_rtDvmFmtBsdLbl; 335 332 336 RT_C_DECLS_END 333 337 -
trunk/src/VBox/Runtime/include/internal/process.h
r82968 r85124 36 36 RT_C_DECLS_BEGIN 37 37 38 extern DECL HIDDEN(RTPROCESS)g_ProcessSelf;39 extern DECL HIDDEN(RTPROCPRIORITY)g_enmProcessPriority;40 extern DECL HIDDEN(char)g_szrtProcExePath[RTPATH_MAX];41 extern DECL HIDDEN(size_t)g_cchrtProcExePath;42 extern DECL HIDDEN(size_t)g_cchrtProcDir;43 extern DECL HIDDEN(size_t)g_offrtProcName;44 extern DECL HIDDEN(bool volatile)g_frtAtExitCalled;38 extern DECL_HIDDEN_DATA(RTPROCESS) g_ProcessSelf; 39 extern DECL_HIDDEN_DATA(RTPROCPRIORITY) g_enmProcessPriority; 40 extern DECL_HIDDEN_DATA(char) g_szrtProcExePath[RTPATH_MAX]; 41 extern DECL_HIDDEN_DATA(size_t) g_cchrtProcExePath; 42 extern DECL_HIDDEN_DATA(size_t) g_cchrtProcDir; 43 extern DECL_HIDDEN_DATA(size_t) g_offrtProcName; 44 extern DECL_HIDDEN_DATA(bool volatile) g_frtAtExitCalled; 45 45 46 46 /** -
trunk/src/VBox/Runtime/include/internal/thread.h
r83124 r85124 138 138 139 139 /** Counters for each thread type. */ 140 extern DECL HIDDEN(uint32_t volatile)g_acRTThreadTypeStats[RTTHREADTYPE_END];140 extern DECL_HIDDEN_DATA(uint32_t volatile) g_acRTThreadTypeStats[RTTHREADTYPE_END]; 141 141 142 142
Note:
See TracChangeset
for help on using the changeset viewer.