Updates:
        Owner: [email protected]

Comment #1 on issue 24394 by [email protected]: Crash -  
browser_shutdown::OnShutdownStarting(browser_shutdown::ShutdownType)
http://code.google.com/p/chromium/issues/detail?id=24394

Looks like a CHECK added by sky in july:

--- trunk/src/chrome/browser/browser_shutdown.cc        2009/07/01 22:30:03     
19778
+++ trunk/src/chrome/browser/browser_shutdown.cc        2009/07/01 22:35:26     
19779
@@ -65,6 +65,7 @@
      // a no-op in some cases, so we still need to go through the normal
      // shutdown path for the ones that didn't exit here.
      shutdown_num_processes_slow_ = 0;
+    size_t start_rph_size = RenderProcessHost::size();
      for (RenderProcessHost::iterator hosts = RenderProcessHost::begin();
           hosts != RenderProcessHost::end();
           ++hosts) {
@@ -74,6 +75,9 @@
          // higher up, it's not possible to get here. Confirm this and  
change
          // FastShutdownIfPossible to just be FastShutdown.
          shutdown_num_processes_slow_++;
+      // The number of RPHs should not have changed as the result of  
invoking
+      // FastShutdownIfPossible.
+      CHECK(start_rph_size == RenderProcessHost::size());
      }
    }
  }

Scott, anything we can do since it is so prevalent in 195.25 ? or are we  
close to
merge the 4.0.x code ?


--
You received this message because you are listed in the owner
or CC fields of this issue, or because you starred this issue.
You may adjust your issue notification preferences at:
http://code.google.com/hosting/settings

--~--~---------~--~----~------------~-------~--~----~
Automated mail from issue updates at http://crbug.com/
Subscription options: http://groups.google.com/group/chromium-bugs
-~----------~----~----~----~------~----~------~--~---

Reply via email to