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 2135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2146 } | 2146 } |
2147 | 2147 |
2148 | 2148 |
2149 void Sampler::Stop() { | 2149 void Sampler::Stop() { |
2150 ASSERT(IsActive()); | 2150 ASSERT(IsActive()); |
2151 SamplerThread::RemoveActiveSampler(this); | 2151 SamplerThread::RemoveActiveSampler(this); |
2152 SetActive(false); | 2152 SetActive(false); |
2153 } | 2153 } |
2154 | 2154 |
2155 | 2155 |
| 2156 bool Sampler::CanSampleOnProfilerEventsProcessorThread() { |
| 2157 return false; |
| 2158 } |
| 2159 |
| 2160 |
| 2161 void Sampler::DoSample() { |
| 2162 } |
| 2163 |
| 2164 |
| 2165 void Sampler::StartProfiling() { |
| 2166 } |
| 2167 |
| 2168 |
| 2169 void Sampler::StopProfiling() { |
| 2170 } |
| 2171 |
| 2172 |
2156 } } // namespace v8::internal | 2173 } } // namespace v8::internal |
OLD | NEW |