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

Unified Diff: base/process/memory.h

Issue 2130293003: Change OOMs to raise custom exception rather than breakpoint on Windows. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: formatting. code review fix. Created 4 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
Index: base/process/memory.h
diff --git a/base/process/memory.h b/base/process/memory.h
index be669dd847606bc743af75768837644a1841ee2a..8f5fe38b8847596cead8af4745c3cba3c37bd2db 100644
--- a/base/process/memory.h
+++ b/base/process/memory.h
@@ -48,6 +48,14 @@ const int kMaxOomScore = 1000;
BASE_EXPORT bool AdjustOOMScore(ProcessId process, int score);
#endif
+#if defined(OS_WIN)
+namespace win {
+
+const DWORD kOomExceptionCode = 0xE0000008;
Mark Mentovai 2016/07/19 20:32:08 A quick comment on how this is expected to be used
Will Harris 2016/07/19 21:35:32 Done.
+
+} // namespace win
+#endif
+
// Special allocator functions for callers that want to check for OOM.
// These will not abort if the allocation fails even if
// EnableTerminationOnOutOfMemory has been called.
« no previous file with comments | « no previous file | base/process/memory_unittest.cc » ('j') | third_party/WebKit/Source/bindings/core/v8/V8Initializer.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698