aboutsummaryrefslogtreecommitdiff
path: root/src/mutex_noop.c
Commit message (Collapse)AuthorAge
* Add static mutexes for use by the built-in / third-party VFSs and use the ↵mistachkin2015-07-03
| | | | | built-in VFS mutex where appropriate. FossilOrigin-Name: b202e2a1d73d104d795d2252b1c6f61d65bfb295
* Improvements to SQLITE_ENABLE_API_ARMOR.drh2015-02-13
| | | FossilOrigin-Name: 823ad40ccb5b51aaa0d5a48da63b465df9d0649a
* Add three new static mutexes for use by the application. This is a partialdrh2014-07-30
| | | | | import of changes from the threads branch. FossilOrigin-Name: 3aad01960f92c5e77dba64ac1a6c6b063378fb97
* Fix typos and comments and make minor changes to a few function names,drh2012-01-04
| | | | | as suggested by readership. FossilOrigin-Name: e9d05cbb7676cbda83f1b3b71447404d7edde898
* Make walIndexTryHdr() a private function. Fix an issue with SQLITE_MUTEX_NOOP.drh2010-06-26
| | | FossilOrigin-Name: ec65bbd06bdd3bf16a742c5bb1fab0dce756c01a
* Suppress various compiler warnings.drh2010-06-26
| | | FossilOrigin-Name: e82d008eaffb5522080cad6c69c1b194b78eadbd
* Add some 'const' markers to static data that is really constant.dan2010-06-02
| | | FossilOrigin-Name: e7073e23b80e7cae0c76d42f014ee9b2d40a8f2f
* Change the xShmOpen() method of the VFS to take the database file name asdrh2010-05-07
| | | | | | its argument, not the WAL file name. Also fix some unrelated compiler warnings. FossilOrigin-Name: a65c2939267ef6acec4e355a207f98f217e263d6
* Remove the noop-mutex implementations of mutex_held() and mutex_notheld() drh2010-05-06
| | | | | since they are both unreachable. FossilOrigin-Name: 6767b62a9a063582889f5ceb42f95eab24c697da
* Get the previous mutex fix working with SQLITE_DEBUG and with the amalgamation.drh2010-05-05
| | | FossilOrigin-Name: df19928f7ee94bca3989313ff16507c15d6efe2b
* When the in single-threaded mode, the sqlite3_mutex_alloc() interfacedrh2010-05-05
| | | | | | | still returns a non-NULL value. The mutex doesn't do anything, but it tests non-NULL. This way, extensions (or VFSes) that use sqlite3_mutex_alloc() can tell the difference between an OOM error and mutexes being disabled. FossilOrigin-Name: 451fd175758983c335aab449fdc4cb838156c4cb
* Remove the obsolete "$Id:$" RCS identifier strings from the source code.drh2009-11-10
| | | FossilOrigin-Name: f6c045f649036958078cb15cd9d5453680c82b0c
* Fix harmless compiler warnings. Improved comments in the query optimizer. ↵drh2008-12-05
| | | | | (CVS 5982) FossilOrigin-Name: adedd697b475dadaa2eeae0d0413603195c955cf
* Fix a naming problem when SQLITE_MUTEX_NOOP is used. (CVS 5827)drh2008-10-15
| | | FossilOrigin-Name: 35ce71c6f19953a17aa37abe1c0c97685070e2f6
* Remove the SQLITE_MUTEX_APPDEF compile-time option. The SQLITE_THREADSAFE=0drh2008-10-07
option always removes all mutex code. For application-defined mutexes only, use SQLITE_THREADSAFE=1 with SQLITE_MUTEX_NOOP=1. Ticket #3421. (CVS 5779) FossilOrigin-Name: 02a12eb1cfe9307c66556105a1a99d657cc01ab5