9cd6a39c3e
Mozilla Firefox is a free, open-source and cross-platform web browser for Windows, Linux, MacOS X and many other operating systems. It is fast and easy to use, and offers many advantages over other web browsers, such as tabbed browsing and the ability to block pop-up windows. Firefox also offers excellent bookmark and history management, and it can be extended by developers using industry standards such as XML, CSS, JavaScript, C++, etc. Many extensions are available. This package tracks 38 ESR.
24 lines
700 B
Text
24 lines
700 B
Text
$NetBSD: patch-bg,v 1.1 2015/07/09 14:13:52 ryoon Exp $
|
|
|
|
--- storage/src/SQLiteMutex.h.orig 2013-10-25 22:27:40.000000000 +0000
|
|
+++ storage/src/SQLiteMutex.h
|
|
@@ -108,15 +108,19 @@ public:
|
|
void assertCurrentThreadOwns()
|
|
{
|
|
NS_ASSERTION(mMutex, "No mutex associated with this wrapper!");
|
|
+#if 0
|
|
NS_ASSERTION(sqlite3_mutex_held(mMutex),
|
|
"Mutex is not held, but we expect it to be!");
|
|
+#endif
|
|
}
|
|
|
|
void assertNotCurrentThreadOwns()
|
|
{
|
|
NS_ASSERTION(mMutex, "No mutex associated with this wrapper!");
|
|
+#if 0
|
|
NS_ASSERTION(sqlite3_mutex_notheld(mMutex),
|
|
"Mutex is held, but we expect it to not be!");
|
|
+#endif
|
|
}
|
|
#endif // ifndef DEBUG
|
|
|