| 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 486 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |