Changeset 639 for trunk/src/3rdparty/javascriptcore
- Timestamp:
- Mar 5, 2010, 8:32:13 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/3rdparty/javascriptcore/JavaScriptCore/interpreter/RegisterFile.h
r592 r639 193 193 APIRET arc = DosAllocMem(reinterpret_cast<PPVOID>(&m_buffer), roundUpAllocationSize(bufferLength, commitSize), PAG_READ | PAG_WRITE); 194 194 if (arc != NO_ERROR) { 195 fprintf(stderr, "Could not allocate register file: % d\n", arc);195 fprintf(stderr, "Could not allocate register file: %d\n", arc); 196 196 CRASH(); 197 197 } … … 199 199 arc = DosSetMem(m_buffer, committedSize, PAG_COMMIT | PAG_DEFAULT); 200 200 if (arc != NO_ERROR) { 201 fprintf(stderr, "Could not allocate register file: % d\n", arc);201 fprintf(stderr, "Could not allocate register file: %d\n", arc); 202 202 CRASH(); 203 203 } … … 265 265 APIRET arc = DosSetMem(m_commitEnd, size, PAG_COMMIT | PAG_DEFAULT); 266 266 if (arc != NO_ERROR) { 267 fprintf(stderr, "Could not allocate register file: % d\n", arc);267 fprintf(stderr, "Could not allocate register file: %d\n", arc); 268 268 CRASH(); 269 269 }
Note:
See TracChangeset
for help on using the changeset viewer.