Changeset 59750 in vbox for trunk/src/VBox/GuestHost/OpenGL/util
- Timestamp:
- Feb 20, 2016 12:06:05 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 105620
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/OpenGL/util/error.c
r57018 r59750 22 22 #include <iprt/initterm.h> 23 23 #include <iprt/asm.h> 24 #include <iprt/assert.h> 25 #include <iprt/buildconfig.h> 26 24 27 #include <VBox/log.h> 25 28 … … 34 37 #include <signal.h> 35 38 #include <stdlib.h> 39 40 41 /* 42 * Stuff that needs to be dragged into the link because other DLLs needs it. 43 * See also VBoxDeps.cpp in iprt and xpcom. 44 */ 45 PFNRT g_VBoxRTDeps[] = 46 { 47 (PFNRT)RTAssertShouldPanic, 48 (PFNRT)ASMAtomicReadU64, 49 (PFNRT)ASMAtomicCmpXchgU64, 50 (PFNRT)ASMBitFirstSet, 51 (PFNRT)RTBldCfgRevision, 52 }; 53 36 54 37 55 static void logMessageV(const char *pszPrefix, const char *pszFormat, va_list va) … … 188 206 } 189 207 #endif 208
Note:
See TracChangeset
for help on using the changeset viewer.