Bug 408914 - "Disable sqlite async IO" [p=vladimir@pobox.com (Vladimir Vukicevic [vlad]) r=sdwilsh a1.9=beltzner]

This commit is contained in:
reed@reedloden.com 2008-01-07 00:27:25 -08:00
parent f0ae654f30
commit 21018b4c31

View File

@ -91,6 +91,9 @@ mozStorageService::Init()
// cache.
sqlite3_enable_shared_cache(1);
// Disable async IO; need to test to see whether corruption is
// caused by it or not
#if 0
nsresult rv;
nsCOMPtr<nsIObserverService> observerService =
do_GetService("@mozilla.org/observer-service;1", &rv);
@ -101,6 +104,7 @@ mozStorageService::Init()
rv = observerService->AddObserver(this, kShutdownMessage, PR_FALSE);
NS_ENSURE_SUCCESS(rv, rv);
#endif
return NS_OK;
}