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 08:27:25 +00:00
Родитель bb9c1d86d9
Коммит 3294ec276d
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -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;
}