Roll src/third_party/WebKit 1a597f0:f220b12 (svn 200965:200966)
[chromium-blink-merge.git] / base / debug / debugger_win.cc
bloba1d86e4453d98e6a102c64404497707947d73acd
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "base/debug/debugger.h"
7 #include <stdlib.h>
8 #include <windows.h>
10 namespace base {
11 namespace debug {
13 bool BeingDebugged() {
14 return ::IsDebuggerPresent() != 0;
17 void BreakDebugger() {
18 if (IsDebugUISuppressed())
19 _exit(1);
21 __debugbreak();
24 } // namespace debug
25 } // namespace base