1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-07-30 19:03:16 +03:00

Make the default threading mode multithread (-nomutex) in the TCL interface. (CVS 5670)

FossilOrigin-Name: d9e826942673ad048d611c014bfbee39ab5535c8
This commit is contained in:
drh
2008-09-03 01:08:00 +00:00
parent 039963ad33
commit cc91e7f83e
5 changed files with 17 additions and 17 deletions

View File

@ -9,7 +9,7 @@
#
#***********************************************************************
#
# $Id: permutations.test,v 1.28 2008/09/03 00:43:15 drh Exp $
# $Id: permutations.test,v 1.29 2008/09/03 01:08:02 drh Exp $
set testdir [file dirname $argv0]
source $testdir/tester.tcl
@ -271,7 +271,7 @@ run_tests "nomutex" -description {
rename sqlite3 sqlite3_nomutex
proc sqlite3 {args} {
if {[string range [lindex $args 0] 0 0] ne "-"} {
lappend args -nomutex 1
lappend args -fullmutex 0 -nomutex 1
}
uplevel [concat sqlite3_nomutex $args]
}
@ -314,7 +314,7 @@ run_tests "fullmutex" -description {
rename sqlite3 sqlite3_fullmutex
proc sqlite3 {args} {
if {[string range [lindex $args 0] 0 0] ne "-"} {
lappend args -fullmutex 1
lappend args -nomutex 0 -fullmutex 1
}
uplevel [concat sqlite3_fullmutex $args]
}