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

Unified Diff: src/isolate.h

Issue 261253005: Clean up debugger flags. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: rebase Created 6 years, 7 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 | « src/ia32/macro-assembler-ia32.cc ('k') | src/isolate-inl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/isolate.h
diff --git a/src/isolate.h b/src/isolate.h
index 35307ccf743fe37ec648913221dd57ff55fecccd..3bed7638fc8be5730919acc87e67805cad46e85a 100644
--- a/src/isolate.h
+++ b/src/isolate.h
@@ -512,9 +512,6 @@ class Isolate {
// Mutex for serializing access to break control structures.
RecursiveMutex* break_access() { return &break_access_; }
- // Mutex for serializing access to debugger.
- RecursiveMutex* debugger_access() { return &debugger_access_; }
-
Address get_address_from_id(AddressId id);
// Access to top context (where the current function object was created).
@@ -930,12 +927,9 @@ class Isolate {
return &interp_canonicalize_mapping_;
}
- inline bool IsCodePreAgingActive();
-
Debugger* debugger() { return debugger_; }
Debug* debug() { return debug_; }
- inline bool IsDebuggerActive();
inline bool DebuggerHasBreakPoints();
CpuProfiler* cpu_profiler() const { return cpu_profiler_; }
@@ -1194,7 +1188,6 @@ class Isolate {
CodeRange* code_range_;
RecursiveMutex break_access_;
Atomic32 debugger_initialized_;
- RecursiveMutex debugger_access_;
Logger* logger_;
StackGuard stack_guard_;
StatsTable* stats_table_;
« no previous file with comments | « src/ia32/macro-assembler-ia32.cc ('k') | src/isolate-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698