OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "src/sampler.h" | 5 #include "src/sampler.h" |
6 | 6 |
7 #if V8_OS_POSIX && !V8_OS_CYGWIN | 7 #if V8_OS_POSIX && !V8_OS_CYGWIN |
8 | 8 |
9 #define USE_SIGNALS | 9 #define USE_SIGNALS |
10 | 10 |
(...skipping 757 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
768 #endif | 768 #endif |
769 #endif // USE_SIMULATOR | 769 #endif // USE_SIMULATOR |
770 SampleStack(state); | 770 SampleStack(state); |
771 } | 771 } |
772 ResumeThread(profiled_thread); | 772 ResumeThread(profiled_thread); |
773 } | 773 } |
774 | 774 |
775 #endif // USE_SIGNALS | 775 #endif // USE_SIGNALS |
776 | 776 |
777 | 777 |
778 } } // namespace v8::internal | 778 } // namespace internal |
| 779 } // namespace v8 |
OLD | NEW |