Skip to content

Instantly share code, notes, and snippets.

@bnoordhuis
Created October 26, 2012 20:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bnoordhuis/fdcbcb16594e699cffe3 to your computer and use it in GitHub Desktop.
Save bnoordhuis/fdcbcb16594e699cffe3 to your computer and use it in GitHub Desktop.
diff --git a/deps/v8/src/log.cc b/deps/v8/src/log.cc
index b049ffe..662916e 100644
--- a/deps/v8/src/log.cc
+++ b/deps/v8/src/log.cc
@@ -283,11 +283,7 @@ void Profiler::Engage() {
if (engaged_) return;
engaged_ = true;
- // TODO(mnaganov): This is actually "Chromium" mode. Flags need to be revised.
- // http://code.google.com/p/v8/issues/detail?id=487
- if (!FLAG_prof_lazy) {
- OS::LogSharedLibraryAddresses();
- }
+ OS::LogSharedLibraryAddresses();
// Start thread processing the profiler buffer.
running_ = true;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment