Changeset 85124 in vbox for trunk/src/VBox/Runtime/r3/init.cpp
- Timestamp:
- Jul 8, 2020 9:13:30 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/init.cpp
r85121 r85124 88 88 /** The process path. 89 89 * This is used by RTPathExecDir and RTProcGetExecutablePath and set by rtProcInitName. */ 90 DECL HIDDEN(char)g_szrtProcExePath[RTPATH_MAX];90 DECL_HIDDEN_DATA(char) g_szrtProcExePath[RTPATH_MAX]; 91 91 /** The length of g_szrtProcExePath. */ 92 DECL HIDDEN(size_t)g_cchrtProcExePath;92 DECL_HIDDEN_DATA(size_t) g_cchrtProcExePath; 93 93 /** The length of directory path component of g_szrtProcExePath. */ 94 DECL HIDDEN(size_t)g_cchrtProcDir;94 DECL_HIDDEN_DATA(size_t) g_cchrtProcDir; 95 95 /** The offset of the process name into g_szrtProcExePath. */ 96 DECL HIDDEN(size_t)g_offrtProcName;96 DECL_HIDDEN_DATA(size_t) g_offrtProcName; 97 97 98 98 /** The IPRT init flags. */ … … 109 109 * Program start nanosecond TS. 110 110 */ 111 DECL HIDDEN(uint64_t)g_u64ProgramStartNanoTS;111 DECL_HIDDEN_DATA(uint64_t) g_u64ProgramStartNanoTS; 112 112 113 113 /** 114 114 * The process identifier of the running process. 115 115 */ 116 DECL HIDDEN(RTPROCESS)g_ProcessSelf = NIL_RTPROCESS;116 DECL_HIDDEN_DATA(RTPROCESS) g_ProcessSelf = NIL_RTPROCESS; 117 117 118 118 /** 119 119 * The current process priority. 120 120 */ 121 DECL HIDDEN(RTPROCPRIORITY) g_enmProcessPriority = RTPROCPRIORITY_DEFAULT;121 DECL_HIDDEN_DATA(RTPROCPRIORITY) g_enmProcessPriority = RTPROCPRIORITY_DEFAULT; 122 122 123 123 /** … … 125 125 * that the process is terminating. 126 126 */ 127 DECL HIDDEN(bool volatile) g_frtAtExitCalled = false;127 DECL_HIDDEN_DATA(bool volatile) g_frtAtExitCalled = false; 128 128 129 129 #ifdef IPRT_WITH_ALIGNMENT_CHECKS
Note:
See TracChangeset
for help on using the changeset viewer.