Changeset 40282 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Feb 28, 2012 9:02:40 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/testcase/tstLdr.cpp
r38636 r40282 101 101 } aLoads[6] = 102 102 { 103 { NULL, NULL, ( int32_t)0xefefef00, "foo" },104 { NULL, NULL, ( int32_t)0x40404040, "bar" },105 { NULL, NULL, ( int32_t)0xefefef00, "foobar" },106 { NULL, NULL, ( int32_t)0xefefef00, "kLdr-foo" },107 { NULL, NULL, ( int32_t)0x40404040, "kLdr-bar" },108 { NULL, NULL, ( int32_t)0xefefef00, "kLdr-foobar" }103 { NULL, NULL, (RTUINTPTR)0xefefef00, "foo" }, 104 { NULL, NULL, (RTUINTPTR)0x40404040, "bar" }, 105 { NULL, NULL, (RTUINTPTR)0xefefef00, "foobar" }, 106 { NULL, NULL, (RTUINTPTR)0xefefef00, "kLdr-foo" }, 107 { NULL, NULL, (RTUINTPTR)0x40404040, "kLdr-bar" }, 108 { NULL, NULL, (RTUINTPTR)0xefefef00, "kLdr-foobar" } 109 109 }; 110 110 unsigned i; … … 170 170 static RTUINTPTR aRels[] = 171 171 { 172 ( int32_t)0xefefef00, /* same. */173 ( int32_t)0x40404040, /* the other. */174 ( int32_t)0xefefef00, /* back. */175 ( int32_t)0x40404040, /* the other. */176 ( int32_t)0xefefef00, /* back again. */177 ( int32_t)0x77773420, /* somewhere entirely else. */178 ( int32_t)0xf0000000, /* somewhere entirely else. */179 ( int32_t)0x40404040, /* the other. */180 ( int32_t)0xefefef00 /* back again. */172 (RTUINTPTR)0xefefef00, /* same. */ 173 (RTUINTPTR)0x40404040, /* the other. */ 174 (RTUINTPTR)0xefefef00, /* back. */ 175 (RTUINTPTR)0x40404040, /* the other. */ 176 (RTUINTPTR)0xefefef00, /* back again. */ 177 (RTUINTPTR)0x77773420, /* somewhere entirely else. */ 178 (RTUINTPTR)0xf0000000, /* somewhere entirely else. */ 179 (RTUINTPTR)0x40404040, /* the other. */ 180 (RTUINTPTR)0xefefef00 /* back again. */ 181 181 }; 182 182 struct Symbols … … 188 188 } aSyms[] = 189 189 { 190 { ~0 , "Entrypoint" },191 { ~0 , "SomeExportFunction1" },192 { ~0 , "SomeExportFunction2" },193 { ~0 , "SomeExportFunction3" },194 { ~0 , "SomeExportFunction4" },195 { ~0 , "SomeExportFunction5" },196 { ~0 , "SomeExportFunction5" },197 { ~0 , "DISCoreOne" }190 { ~0U, "Entrypoint" }, 191 { ~0U, "SomeExportFunction1" }, 192 { ~0U, "SomeExportFunction2" }, 193 { ~0U, "SomeExportFunction3" }, 194 { ~0U, "SomeExportFunction4" }, 195 { ~0U, "SomeExportFunction5" }, 196 { ~0U, "SomeExportFunction5" }, 197 { ~0U, "DISCoreOne" } 198 198 }; 199 199
Note:
See TracChangeset
for help on using the changeset viewer.