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

Unified Diff: runtime/vm/thread_interrupter_win.cc

Issue 2974233002: VM: Re-format to use at most one newline between functions (Closed)
Patch Set: Rebase and merge Created 3 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/thread_interrupter_macos.cc ('k') | runtime/vm/thread_pool.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/thread_interrupter_win.cc
diff --git a/runtime/vm/thread_interrupter_win.cc b/runtime/vm/thread_interrupter_win.cc
index 4342f2b1f5d42255e3914c8410ed0e2c04ff9a7c..9963983e0ea4986d7c5d52be3900ec63a4db4c94 100644
--- a/runtime/vm/thread_interrupter_win.cc
+++ b/runtime/vm/thread_interrupter_win.cc
@@ -53,7 +53,6 @@ class ThreadInterrupterWin : public AllStatic {
return false;
}
-
static void Interrupt(OSThread* os_thread) {
ASSERT(!OSThread::Compare(GetCurrentThreadId(), os_thread->id()));
HANDLE handle = OpenThread(
@@ -92,12 +91,10 @@ class ThreadInterrupterWin : public AllStatic {
}
};
-
bool ThreadInterrupter::IsDebuggerAttached() {
return false;
}
-
void ThreadInterrupter::InterruptThread(OSThread* thread) {
if (FLAG_trace_thread_interrupter) {
OS::PrintErr("ThreadInterrupter suspending %p\n",
@@ -110,12 +107,10 @@ void ThreadInterrupter::InterruptThread(OSThread* thread) {
}
}
-
void ThreadInterrupter::InstallSignalHandler() {
// Nothing to do on Windows.
}
-
void ThreadInterrupter::RemoveSignalHandler() {
// Nothing to do on Windows.
}
« no previous file with comments | « runtime/vm/thread_interrupter_macos.cc ('k') | runtime/vm/thread_pool.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698