Changeset 69643 in vbox for trunk/src/VBox/Runtime/r0drv
- Timestamp:
- Nov 10, 2017 1:34:06 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 119007
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/darwin/dbgkrnlinfo-r0drv-darwin.cpp
r69111 r69643 47 47 #else 48 48 # include <stdio.h> /* for printf */ 49 #endif 50 51 #ifndef IN_RING0 /* A linking tweak for the testcase: */ 52 # include <iprt/cdefs.h> 53 # undef RTR0DECL 54 # define RTR0DECL(type) DECLHIDDEN(type) RTCALL 49 55 #endif 50 56 … … 117 123 118 124 #define VERR_LDR_UNEXPECTED (-641) 125 126 #ifndef RT_OS_DARWIN 127 # define MAC_OS_X_VERSION_MIN_REQUIRED 1050 128 #endif 119 129 120 130 … … 1086 1096 */ 1087 1097 static bool s_fFirstCall = true; 1098 #ifdef IN_RING3 1099 extern const char *g_pszTestKernel; 1100 #endif 1088 1101 struct 1089 1102 { … … 1092 1105 } aKernels[] = 1093 1106 { 1107 #ifdef IN_RING3 1108 { g_pszTestKernel, VERR_WRONG_ORDER }, 1109 #endif 1094 1110 { "/System/Library/Kernels/kernel", VERR_WRONG_ORDER }, 1095 1111 { "/System/Library/Kernels/kernel.development", VERR_WRONG_ORDER },
Note:
See TracChangeset
for help on using the changeset viewer.