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

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

Issue 10961042: 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::CommittedPhysicalSizeInRegion(
508 void* base, size_t size, size_t* physical) {
509 // TODO(alph): implement for the platform.
510 return false;
511 }
512
513
507 class Thread::PlatformData : public Malloced { 514 class Thread::PlatformData : public Malloced {
508 public: 515 public:
509 PlatformData() : thread_(kNoThread) {} 516 PlatformData() : thread_(kNoThread) {}
510 517
511 pthread_t thread_; // Thread handle for pthread. 518 pthread_t thread_; // Thread handle for pthread.
512 }; 519 };
513 520
514 Thread::Thread(const Options& options) 521 Thread::Thread(const Options& options)
515 : data_(new PlatformData()), 522 : data_(new PlatformData()),
516 stack_size_(options.stack_size()) { 523 stack_size_(options.stack_size()) {
(...skipping 455 matching lines...) Expand 10 before | Expand all | Expand 10 after
972 979
973 980
974 void Sampler::Stop() { 981 void Sampler::Stop() {
975 ASSERT(IsActive()); 982 ASSERT(IsActive());
976 SignalSender::RemoveActiveSampler(this); 983 SignalSender::RemoveActiveSampler(this);
977 SetActive(false); 984 SetActive(false);
978 } 985 }
979 986
980 987
981 } } // namespace v8::internal 988 } } // 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