Changeset 89647 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Jun 13, 2021 9:37:44 PM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 145092
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/posix/thread-posix.cpp
r89646 r89647 91 91 /** The signal we use for poking threads. 92 92 * This is set to -1 if no available signal was found. */ 93 static int 93 static int volatile g_iSigPokeThread = -1; 94 94 #endif 95 95 … … 167 167 * Note! Avoid SIGRTMIN thru SIGRTMIN+2 because of LinuxThreads. 168 168 */ 169 static const int s_aiSigCandidates[] = 169 # ifndef RT_OS_LINUX /* glibc defines SIGRTMAX to __libc_current_sigrtmax(), causing compiler to deploy serialization here. */ 170 static 171 # endif 172 const int s_aiSigCandidates[] = 170 173 { 171 174 # ifdef SIGRTMAX
Note:
See TracChangeset
for help on using the changeset viewer.