Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Side by Side Diff: src/platform-nullos.cc

Issue 6240002: Introducing MemoryMappedExternalResource for creating an external... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/platform-macos.cc ('k') | src/platform-openbsd.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « src/platform-macos.cc ('k') | src/platform-openbsd.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698