Changeset 96442 in vbox for trunk/src/VBox/Runtime/include
- Timestamp:
- Aug 23, 2022 2:12:35 PM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 153272
- Location:
- trunk/src/VBox/Runtime/include/internal
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/include/internal/initterm.h
r96407 r96442 66 66 #endif /* IN_RING0 */ 67 67 68 #ifdef IN_RING3 69 70 extern DECL_HIDDEN_DATA(int32_t volatile) g_crtR3Users; 71 extern DECL_HIDDEN_DATA(bool volatile) g_frtR3Initializing; 72 extern DECL_HIDDEN_DATA(bool volatile) g_frtAtExitCalled; 73 74 /** 75 * Internal version of RTR3InitIsInitialized. 76 */ 77 DECLINLINE(bool) rtInitIsInitialized(void) 78 { 79 return g_crtR3Users >= 1 && !g_frtR3Initializing; 80 } 81 82 #endif 83 68 84 RT_C_DECLS_END 69 85 -
trunk/src/VBox/Runtime/include/internal/process.h
r96407 r96442 50 50 extern DECL_HIDDEN_DATA(char) g_szrtProcExePath[RTPATH_MAX]; 51 51 extern DECL_HIDDEN_DATA(size_t) g_cchrtProcExePath; 52 extern DECL_HIDDEN_DATA(size_t) g_cchrtProc Dir;52 extern DECL_HIDDEN_DATA(size_t) g_cchrtProcExeDir; 53 53 extern DECL_HIDDEN_DATA(size_t) g_offrtProcName; 54 extern DECL_HIDDEN_DATA(bool volatile) g_frtAtExitCalled;55 54 56 55 /**
Note:
See TracChangeset
for help on using the changeset viewer.