Changeset 25528 in vbox for trunk/src/recompiler
- Timestamp:
- Dec 20, 2009 11:24:59 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 56201
- Location:
- trunk/src/recompiler
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/recompiler/Sun/testmath.c
r18083 r25528 12 12 # include <math.h> 13 13 # undef printf 14 # define printf AssertMsg214 # define printf RTAssertMsg2Weak 15 15 #else 16 16 # include <stdio.h> -
trunk/src/recompiler/VBoxREMWrapper.cpp
r25432 r25528 1000 1000 1001 1001 /* IPRT args */ 1002 static const REMPARMDESC g_aArgs AssertMsg1[] =1002 static const REMPARMDESC g_aArgsRTAssertMsg1[] = 1003 1003 { 1004 1004 { REMPARMDESC_FLAGS_INT, sizeof(const char *), NULL }, … … 1007 1007 { REMPARMDESC_FLAGS_INT, sizeof(const char *), NULL } 1008 1008 }; 1009 static const REMPARMDESC g_aArgs AssertMsg2[] =1009 static const REMPARMDESC g_aArgsRTAssertMsg2[] = 1010 1010 { 1011 1011 { REMPARMDESC_FLAGS_INT, sizeof(const char *), NULL }, 1012 1012 { REMPARMDESC_FLAGS_ELLIPSIS, 0 } 1013 }; 1014 static const REMPARMDESC g_aArgsRTAssertMsg2V[] = 1015 { 1016 { REMPARMDESC_FLAGS_INT, sizeof(const char *), NULL }, 1017 { REMPARMDESC_FLAGS_VALIST, 0 } 1013 1018 }; 1014 1019 static const REMPARMDESC g_aArgsRTLogFlags[] = … … 1253 1258 static REMFNDESC g_aRTImports[] = 1254 1259 { 1255 { "AssertMsg1", (void *)(uintptr_t)&AssertMsg1, &g_aArgsAssertMsg1[0], RT_ELEMENTS(g_aArgsAssertMsg1), REMFNDESC_FLAGS_RET_VOID, 0, NULL }, 1256 { "AssertMsg2", (void *)(uintptr_t)&AssertMsg2, &g_aArgsAssertMsg2[0], RT_ELEMENTS(g_aArgsAssertMsg2), REMFNDESC_FLAGS_RET_VOID | REMFNDESC_FLAGS_ELLIPSIS, 0, NULL }, 1260 { "RTAssertMsg1", (void *)(uintptr_t)&RTAssertMsg1, &g_aArgsRTAssertMsg1[0], RT_ELEMENTS(g_aArgsRTAssertMsg1), REMFNDESC_FLAGS_RET_VOID, 0, NULL }, 1261 { "RTAssertMsg1Weak", (void *)(uintptr_t)&RTAssertMsg1Weak, &g_aArgsRTAssertMsg1[0], RT_ELEMENTS(g_aArgsRTAssertMsg1), REMFNDESC_FLAGS_RET_VOID, 0, NULL }, 1262 { "RTAssertMsg2", (void *)(uintptr_t)&RTAssertMsg2, &g_aArgsRTAssertMsg2[0], RT_ELEMENTS(g_aArgsRTAssertMsg2), REMFNDESC_FLAGS_RET_VOID | REMFNDESC_FLAGS_ELLIPSIS, 0, NULL }, 1263 { "RTAssertMsg2V", (void *)(uintptr_t)&RTAssertMsg2V, &g_aArgsRTAssertMsg2V[0], RT_ELEMENTS(g_aArgsRTAssertMsg2V), REMFNDESC_FLAGS_RET_VOID | REMFNDESC_FLAGS_VALIST, 0, NULL }, 1264 { "RTAssertMsg2Weak", (void *)(uintptr_t)&RTAssertMsg2Weak, &g_aArgsRTAssertMsg2[0], RT_ELEMENTS(g_aArgsRTAssertMsg2), REMFNDESC_FLAGS_RET_VOID | REMFNDESC_FLAGS_ELLIPSIS, 0, NULL }, 1257 1265 { "RTAssertShouldPanic", (void *)(uintptr_t)&RTAssertShouldPanic, NULL, 0, REMFNDESC_FLAGS_RET_INT, sizeof(bool), NULL }, 1258 1266 { "RTLogDefaultInstance", (void *)(uintptr_t)&RTLogDefaultInstance, NULL, 0, REMFNDESC_FLAGS_RET_INT, sizeof(PRTLOGGER), NULL },
Note:
See TracChangeset
for help on using the changeset viewer.