diff options
author | danielk1977 <danielk1977@noemail.net> | 2008-07-10 17:52:49 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2008-07-10 17:52:49 +0000 |
commit | 9a6284c1bba40b606a01356ebe962691e1ce256a (patch) | |
tree | 23dc252d6c87353e8b125b02d4ce80d9144b0478 /src/test_mutex.c | |
parent | 93a960a0a8a537784e4f40db2ad06686618a234e (diff) | |
download | sqlite-9a6284c1bba40b606a01356ebe962691e1ce256a.tar.gz sqlite-9a6284c1bba40b606a01356ebe962691e1ce256a.zip |
Add the SQLITE_OPEN_NOMUTEX flag. Used for opening connections that are not protected by an internal mutex. (CVS 5387)
FossilOrigin-Name: 7e58b78712420b3bd4320192a58d89eb71eecc9c
Diffstat (limited to 'src/test_mutex.c')
-rw-r--r-- | src/test_mutex.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test_mutex.c b/src/test_mutex.c index 817de93ac..2de4a1b9c 100644 --- a/src/test_mutex.c +++ b/src/test_mutex.c @@ -10,7 +10,7 @@ ** ************************************************************************* ** -** $Id: test_mutex.c,v 1.6 2008/07/08 02:12:37 drh Exp $ +** $Id: test_mutex.c,v 1.7 2008/07/10 17:52:49 danielk1977 Exp $ */ #include "tcl.h" @@ -18,6 +18,7 @@ #include <stdlib.h> #include <assert.h> #include <string.h> +#include "mutex.h" /* defined in test1.c */ const char *sqlite3TestErrorName(int); |