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

Side by Side Diff: runtime/vm/thread_interrupter_linux.cc

Issue 2682343002: Disable the profiler when a debugger is attached (Closed)
Patch Set: vegorov review Created 3 years, 10 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
« no previous file with comments | « runtime/vm/thread_interrupter_fuchsia.cc ('k') | runtime/vm/thread_interrupter_macos.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 (c) 2013, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #include "platform/globals.h" 5 #include "platform/globals.h"
6 #if defined(TARGET_OS_LINUX) 6 #if defined(TARGET_OS_LINUX)
7 7
8 #include <errno.h> // NOLINT 8 #include <errno.h> // NOLINT
9 9
10 #include "vm/flags.h" 10 #include "vm/flags.h"
(...skipping 26 matching lines...) Expand all
37 its.pc = SignalHandler::GetProgramCounter(mcontext); 37 its.pc = SignalHandler::GetProgramCounter(mcontext);
38 its.fp = SignalHandler::GetFramePointer(mcontext); 38 its.fp = SignalHandler::GetFramePointer(mcontext);
39 its.csp = SignalHandler::GetCStackPointer(mcontext); 39 its.csp = SignalHandler::GetCStackPointer(mcontext);
40 its.dsp = SignalHandler::GetDartStackPointer(mcontext); 40 its.dsp = SignalHandler::GetDartStackPointer(mcontext);
41 its.lr = SignalHandler::GetLinkRegister(mcontext); 41 its.lr = SignalHandler::GetLinkRegister(mcontext);
42 Profiler::SampleThread(thread, its); 42 Profiler::SampleThread(thread, its);
43 } 43 }
44 }; 44 };
45 45
46 46
47 bool ThreadInterrupter::IsDebuggerAttached() {
48 return false;
49 }
50
51
47 void ThreadInterrupter::InterruptThread(OSThread* thread) { 52 void ThreadInterrupter::InterruptThread(OSThread* thread) {
48 if (FLAG_trace_thread_interrupter) { 53 if (FLAG_trace_thread_interrupter) {
49 OS::Print("ThreadInterrupter interrupting %p\n", 54 OS::PrintErr("ThreadInterrupter interrupting %p\n",
50 reinterpret_cast<void*>(thread->id())); 55 reinterpret_cast<void*>(thread->id()));
51 } 56 }
52 int result = pthread_kill(thread->id(), SIGPROF); 57 int result = pthread_kill(thread->id(), SIGPROF);
53 ASSERT((result == 0) || (result == ESRCH)); 58 ASSERT((result == 0) || (result == ESRCH));
54 } 59 }
55 60
56 61
57 void ThreadInterrupter::InstallSignalHandler() { 62 void ThreadInterrupter::InstallSignalHandler() {
58 SignalHandler::Install< 63 SignalHandler::Install<
59 ThreadInterrupterLinux::ThreadInterruptSignalHandler>(); 64 ThreadInterrupterLinux::ThreadInterruptSignalHandler>();
60 } 65 }
61 66
62 67
63 void ThreadInterrupter::RemoveSignalHandler() { 68 void ThreadInterrupter::RemoveSignalHandler() {
64 SignalHandler::Remove(); 69 SignalHandler::Remove();
65 } 70 }
66 71
67 72
68 } // namespace dart 73 } // namespace dart
69 74
70 #endif // defined(TARGET_OS_LINUX) 75 #endif // defined(TARGET_OS_LINUX)
OLDNEW
« no previous file with comments | « runtime/vm/thread_interrupter_fuchsia.cc ('k') | runtime/vm/thread_interrupter_macos.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698