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

Unified Diff: base/process/process_posix.cc

Issue 2629623003: Win should call ::TerminateProcess to exit a renderer process (Closed)
Patch Set: temp Created 3 years, 11 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
Index: base/process/process_posix.cc
diff --git a/base/process/process_posix.cc b/base/process/process_posix.cc
index 55b7ac90e2952de74c28408c90163b727ca7cdc5..9b94891dd961ba8b972ead181bf4ca5d1c0beca4 100644
--- a/base/process/process_posix.cc
+++ b/base/process/process_posix.cc
@@ -264,6 +264,11 @@ bool Process::CanBackgroundProcesses() {
}
#endif // !defined(OS_LINUX) && !defined(OS_MACOSX)
+// static
+void Process::TerminateCurrentProcessImmediately(int exit_code) {
+ _exit(exit_code);
+}
+
bool Process::IsValid() const {
return process_ != kNullProcessHandle;
}

Powered by Google App Engine
This is Rietveld 408576698