mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Report cycle collector faults to the error console and the observer service. Bug 410295, r+sr=peterv, a=schrep
This commit is contained in:
parent
fe4770bdbf
commit
cdc3680e78
@ -139,7 +139,9 @@
|
||||
#include "nsPrintfCString.h"
|
||||
#include "nsTArray.h"
|
||||
#include "nsIObserverService.h"
|
||||
#include "nsIConsoleService.h"
|
||||
#include "nsServiceManagerUtils.h"
|
||||
#include "nsThreadUtils.h"
|
||||
|
||||
#include <stdio.h>
|
||||
#ifdef WIN32
|
||||
@ -918,6 +920,33 @@ static nsCycleCollector *sCollector = nsnull;
|
||||
// Utility functions
|
||||
////////////////////////////////////////////////////////////////////////
|
||||
|
||||
class CCRunnableFaultReport : public nsRunnable {
|
||||
public:
|
||||
CCRunnableFaultReport(const nsCString& report)
|
||||
{
|
||||
CopyUTF8toUTF16(report, mReport);
|
||||
}
|
||||
|
||||
NS_IMETHOD Run() {
|
||||
nsCOMPtr<nsIObserverService> obs =
|
||||
do_GetService(NS_OBSERVERSERVICE_CONTRACTID);
|
||||
if (obs) {
|
||||
obs->NotifyObservers(nsnull, "cycle-collector-fault",
|
||||
mReport.get());
|
||||
}
|
||||
|
||||
nsCOMPtr<nsIConsoleService> cons =
|
||||
do_GetService(NS_CONSOLESERVICE_CONTRACTID);
|
||||
if (cons) {
|
||||
cons->LogStringMessage(mReport.get());
|
||||
}
|
||||
return NS_OK;
|
||||
}
|
||||
|
||||
private:
|
||||
nsString mReport;
|
||||
};
|
||||
|
||||
static void
|
||||
Fault(const char *msg, const void *ptr=nsnull)
|
||||
{
|
||||
@ -951,9 +980,9 @@ Fault(const char *msg, const void *ptr=nsnull)
|
||||
}
|
||||
#endif
|
||||
|
||||
NS_NOTREACHED(nsPrintfCString(256,
|
||||
"Fault in cycle collector: %s (ptr: %p)\n",
|
||||
msg, ptr).get());
|
||||
nsPrintfCString str(256, "Fault in cycle collector: %s (ptr: %p)\n",
|
||||
msg, ptr);
|
||||
NS_NOTREACHED(str.get());
|
||||
|
||||
// When faults are not fatal, we assume we're running in a
|
||||
// production environment and we therefore want to disable the
|
||||
@ -963,6 +992,11 @@ Fault(const char *msg, const void *ptr=nsnull)
|
||||
// *should* never hit a fault.
|
||||
|
||||
sCollector->mParams.mDoNothing = PR_TRUE;
|
||||
|
||||
// Report to observers off an event so we don't run JS under GC
|
||||
// (which is where we might be right now).
|
||||
nsCOMPtr<nsIRunnable> ev = new CCRunnableFaultReport(str);
|
||||
NS_DispatchToCurrentThread(ev);
|
||||
}
|
||||
|
||||
#ifdef DEBUG_CC
|
||||
|
Loading…
Reference in New Issue
Block a user