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

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

Issue 414045: After performing scavenge, hint OS that data in from spaces are no more neede... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 11 years, 1 month 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-win32.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 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 return false; 261 return false;
262 } 262 }
263 263
264 264
265 bool VirtualMemory::Uncommit(void* address, size_t size) { 265 bool VirtualMemory::Uncommit(void* address, size_t size) {
266 UNIMPLEMENTED(); 266 UNIMPLEMENTED();
267 return false; 267 return false;
268 } 268 }
269 269
270 270
271 bool VirtualMemory::Reset(void* address, size_t size, bool is_executable) {
272 UNIMPLEMENTED();
273 return false;
274 }
275
276
271 class ThreadHandle::PlatformData : public Malloced { 277 class ThreadHandle::PlatformData : public Malloced {
272 public: 278 public:
273 explicit PlatformData(ThreadHandle::Kind kind) { 279 explicit PlatformData(ThreadHandle::Kind kind) {
274 UNIMPLEMENTED(); 280 UNIMPLEMENTED();
275 } 281 }
276 282
277 void* pd_data_; 283 void* pd_data_;
278 }; 284 };
279 285
280 286
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
445 } 451 }
446 452
447 453
448 void ProfileSampler::Stop() { 454 void ProfileSampler::Stop() {
449 UNIMPLEMENTED(); 455 UNIMPLEMENTED();
450 } 456 }
451 457
452 #endif // ENABLE_LOGGING_AND_PROFILING 458 #endif // ENABLE_LOGGING_AND_PROFILING
453 459
454 } } // namespace v8::internal 460 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/platform-macos.cc ('k') | src/platform-win32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698