OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 259 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
270 // Minimalistic implementation for bootstrapping. | 270 // Minimalistic implementation for bootstrapping. |
271 abort(); | 271 abort(); |
272 } | 272 } |
273 | 273 |
274 | 274 |
275 void OS::DebugBreak() { | 275 void OS::DebugBreak() { |
276 UNIMPLEMENTED(); | 276 UNIMPLEMENTED(); |
277 } | 277 } |
278 | 278 |
279 | 279 |
| 280 void OS::DumpBacktrace() { |
| 281 // Currently unsupported. |
| 282 } |
| 283 |
| 284 |
280 OS::MemoryMappedFile* OS::MemoryMappedFile::open(const char* name) { | 285 OS::MemoryMappedFile* OS::MemoryMappedFile::open(const char* name) { |
281 UNIMPLEMENTED(); | 286 UNIMPLEMENTED(); |
282 return NULL; | 287 return NULL; |
283 } | 288 } |
284 | 289 |
285 | 290 |
286 OS::MemoryMappedFile* OS::MemoryMappedFile::create(const char* name, int size, | 291 OS::MemoryMappedFile* OS::MemoryMappedFile::create(const char* name, int size, |
287 void* initial) { | 292 void* initial) { |
288 UNIMPLEMENTED(); | 293 UNIMPLEMENTED(); |
289 return NULL; | 294 return NULL; |
(...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
508 UNIMPLEMENTED(); | 513 UNIMPLEMENTED(); |
509 } | 514 } |
510 | 515 |
511 | 516 |
512 void ProfileSampler::Stop() { | 517 void ProfileSampler::Stop() { |
513 UNIMPLEMENTED(); | 518 UNIMPLEMENTED(); |
514 } | 519 } |
515 | 520 |
516 | 521 |
517 } } // namespace v8::internal | 522 } } // namespace v8::internal |
OLD | NEW |