diff options
author | danielk1977 <danielk1977@noemail.net> | 2008-06-18 09:45:56 +0000 |
---|---|---|
committer | danielk1977 <danielk1977@noemail.net> | 2008-06-18 09:45:56 +0000 |
commit | 1a9ed0b27a97371d3db4d381f3258071ff5c71e8 (patch) | |
tree | f69687413d11a768ebfa587f43759117e396c5f9 /src/tclsqlite.c | |
parent | 5f09d3e611f2b88f168d1ce6631d4e4d83a6115c (diff) | |
download | sqlite-1a9ed0b27a97371d3db4d381f3258071ff5c71e8.tar.gz sqlite-1a9ed0b27a97371d3db4d381f3258071ff5c71e8.zip |
Add some test infrastructure and cases for the new mutex api. (CVS 5230)
FossilOrigin-Name: 262baee9952b28afe5dc77eb7365ebb11a480906
Diffstat (limited to 'src/tclsqlite.c')
-rw-r--r-- | src/tclsqlite.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tclsqlite.c b/src/tclsqlite.c index 0fd4602e3..ab00763db 100644 --- a/src/tclsqlite.c +++ b/src/tclsqlite.c @@ -12,7 +12,7 @@ ** A TCL Interface to SQLite. Append this file to sqlite3.c and ** compile the whole thing to build a TCL-enabled version of SQLite. ** -** $Id: tclsqlite.c,v 1.217 2008/05/01 17:16:53 drh Exp $ +** $Id: tclsqlite.c,v 1.218 2008/06/18 09:45:56 danielk1977 Exp $ */ #include "tcl.h" #include <errno.h> @@ -2528,6 +2528,7 @@ int TCLSH_MAIN(int argc, char **argv){ extern int Sqlitetest_func_Init(Tcl_Interp*); extern int Sqlitetest_hexio_Init(Tcl_Interp*); extern int Sqlitetest_malloc_Init(Tcl_Interp*); + extern int Sqlitetest_mutex_Init(Tcl_Interp*); extern int Sqlitetestschema_Init(Tcl_Interp*); extern int Sqlitetestsse_Init(Tcl_Interp*); extern int Sqlitetesttclvar_Init(Tcl_Interp*); @@ -2551,6 +2552,7 @@ int TCLSH_MAIN(int argc, char **argv){ Sqlitetest_func_Init(interp); Sqlitetest_hexio_Init(interp); Sqlitetest_malloc_Init(interp); + Sqlitetest_mutex_Init(interp); Sqlitetestschema_Init(interp); Sqlitetesttclvar_Init(interp); SqlitetestThread_Init(interp); |