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

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

Issue 11066118: Implement committed physical memory stats for Linux. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressing comments Created 8 years, 2 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-nullos.cc ('k') | src/platform-solaris.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 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 486 matching lines...) Expand 10 before | Expand all | Expand 10 after
497 kMmapFd, 497 kMmapFd,
498 kMmapFdOffset) != MAP_FAILED; 498 kMmapFdOffset) != MAP_FAILED;
499 } 499 }
500 500
501 501
502 bool VirtualMemory::ReleaseRegion(void* base, size_t size) { 502 bool VirtualMemory::ReleaseRegion(void* base, size_t size) {
503 return munmap(base, size) == 0; 503 return munmap(base, size) == 0;
504 } 504 }
505 505
506 506
507 bool VirtualMemory::HasLazyCommits() {
508 // TODO(alph): implement for the platform.
509 return false;
510 }
511
512
507 class Thread::PlatformData : public Malloced { 513 class Thread::PlatformData : public Malloced {
508 public: 514 public:
509 PlatformData() : thread_(kNoThread) {} 515 PlatformData() : thread_(kNoThread) {}
510 516
511 pthread_t thread_; // Thread handle for pthread. 517 pthread_t thread_; // Thread handle for pthread.
512 }; 518 };
513 519
514 Thread::Thread(const Options& options) 520 Thread::Thread(const Options& options)
515 : data_(new PlatformData()), 521 : data_(new PlatformData()),
516 stack_size_(options.stack_size()) { 522 stack_size_(options.stack_size()) {
(...skipping 460 matching lines...) Expand 10 before | Expand all | Expand 10 after
977 983
978 984
979 void Sampler::Stop() { 985 void Sampler::Stop() {
980 ASSERT(IsActive()); 986 ASSERT(IsActive());
981 SignalSender::RemoveActiveSampler(this); 987 SignalSender::RemoveActiveSampler(this);
982 SetActive(false); 988 SetActive(false);
983 } 989 }
984 990
985 991
986 } } // namespace v8::internal 992 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/platform-nullos.cc ('k') | src/platform-solaris.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698