зеркало из https://github.com/mozilla/pjs.git
Bug 408914 - "Disable sqlite async IO" [p=vladimir@pobox.com (Vladimir Vukicevic [vlad]) r=sdwilsh a1.9=beltzner]
This commit is contained in:
Родитель
bb9c1d86d9
Коммит
3294ec276d
|
@ -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;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче