Documentation Source Text
Check-in [06a55cbcb5]
Not logged in

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview
SHA1 Hash:06a55cbcb5fb756fd5c112df09f6adf775c4bd00
Date: 2010-01-15 05:16:12
User: dan
Comment:Fix another typo in custombuild.html.
Tags And Properties
Changes
hide diffs unified diffs patch

Changes to pages/custombuild.in

96 <blockquote><pre> 96 <blockquote><pre> 97 -DSQLITE_THREADSAFE=0 97 -DSQLITE_THREADSAFE=0 98 </pre></blockquote> 98 </pre></blockquote> 99 99 100 <p>Mutexes are cheap but they are not free, so performance will be better 100 <p>Mutexes are cheap but they are not free, so performance will be better 101 when mutexes are completely disabled. The resulting library footprint 101 when mutexes are completely disabled. The resulting library footprint 102 will also be a little smaller. Disabling the mutexes at compile-time 102 will also be a little smaller. Disabling the mutexes at compile-time 103 is a recommended optimization for applications were it makes sense.</p> | 103 is a recommended optimization for applications where it makes sense.</p> 104 104 105 <p>When using SQLite as a shared library, an application can test to see 105 <p>When using SQLite as a shared library, an application can test to see 106 whether or not mutexes have been disabled using the 106 whether or not mutexes have been disabled using the 107 [sqlite3_threadsafe()] API. Applications that link against SQLite at 107 [sqlite3_threadsafe()] API. Applications that link against SQLite at 108 run-time and use SQLite from multiple threads should probably check this 108 run-time and use SQLite from multiple threads should probably check this 109 API to make sure they did not accidently get linked against a version of 109 API to make sure they did not accidently get linked against a version of 110 the SQLite library that has its mutexes disabled. Single-threaded 110 the SQLite library that has its mutexes disabled. Single-threaded