OLD | NEW |
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
235 // Minimalistic implementation for bootstrapping. | 235 // Minimalistic implementation for bootstrapping. |
236 abort(); | 236 abort(); |
237 } | 237 } |
238 | 238 |
239 | 239 |
240 void OS::DebugBreak() { | 240 void OS::DebugBreak() { |
241 UNIMPLEMENTED(); | 241 UNIMPLEMENTED(); |
242 } | 242 } |
243 | 243 |
244 | 244 |
| 245 OS::MemoryMappedFile* OS::MemoryMappedFile::open(const char* name) { |
| 246 UNIMPLEMENTED(); |
| 247 return NULL; |
| 248 } |
| 249 |
| 250 |
245 OS::MemoryMappedFile* OS::MemoryMappedFile::create(const char* name, int size, | 251 OS::MemoryMappedFile* OS::MemoryMappedFile::create(const char* name, int size, |
246 void* initial) { | 252 void* initial) { |
247 UNIMPLEMENTED(); | 253 UNIMPLEMENTED(); |
248 return NULL; | 254 return NULL; |
249 } | 255 } |
250 | 256 |
251 | 257 |
252 void OS::LogSharedLibraryAddresses() { | 258 void OS::LogSharedLibraryAddresses() { |
253 UNIMPLEMENTED(); | 259 UNIMPLEMENTED(); |
254 } | 260 } |
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
483 } | 489 } |
484 | 490 |
485 | 491 |
486 void ProfileSampler::Stop() { | 492 void ProfileSampler::Stop() { |
487 UNIMPLEMENTED(); | 493 UNIMPLEMENTED(); |
488 } | 494 } |
489 | 495 |
490 #endif // ENABLE_LOGGING_AND_PROFILING | 496 #endif // ENABLE_LOGGING_AND_PROFILING |
491 | 497 |
492 } } // namespace v8::internal | 498 } } // namespace v8::internal |
OLD | NEW |