summaryrefslogtreecommitdiffstats
path: root/base/debug/debugger.cc
diff options
context:
space:
mode:
Diffstat (limited to 'base/debug/debugger.cc')
-rw-r--r--base/debug/debugger.cc25
1 files changed, 25 insertions, 0 deletions
diff --git a/base/debug/debugger.cc b/base/debug/debugger.cc
new file mode 100644
index 0000000..9ca7e8d
--- /dev/null
+++ b/base/debug/debugger.cc
@@ -0,0 +1,25 @@
+// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "base/debug/debugger.h"
+
+#include "base/platform_thread.h"
+
+namespace base {
+namespace debug {
+
+bool WaitForDebugger(int wait_seconds, bool silent) {
+ for (int i = 0; i < wait_seconds * 10; ++i) {
+ if (BeingDebugged()) {
+ if (!silent)
+ BreakDebugger();
+ return true;
+ }
+ PlatformThread::Sleep(100);
+ }
+ return false;
+}
+
+} // namespace debug
+} // namespace base