aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordan <Dan Kennedy>2025-01-30 15:26:16 +0000
committerdan <Dan Kennedy>2025-01-30 15:26:16 +0000
commit462888819e3582e30c8a513285bd4d524a64f66e (patch)
tree314ae3c121748130954cfa1221f150d02c58c2cc /src/sqliteInt.h
parent43aad25b1b535f1c8c44ae964bf53e40eb351378 (diff)
downloadsqlite-462888819e3582e30c8a513285bd4d524a64f66e.tar.gz
sqlite-462888819e3582e30c8a513285bd4d524a64f66e.zip
Have sqlite3_enable_setlk(-1) configure indefinite blocking locks where they are supported.
FossilOrigin-Name: 62009565d2f2a2c4d347e1da0d5b4ad43056742df47fd6ddb92e62f53a2b57f1
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r--src/sqliteInt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index aa12b8976..631bb2a24 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -1745,7 +1745,7 @@ struct sqlite3 {
int nAnalysisLimit; /* Number of index rows to ANALYZE */
int busyTimeout; /* Busy handler timeout, in msec */
#ifdef SQLITE_ENABLE_SETLK_TIMEOUT
- int setlkTimeout; /* Blocking lock timeout, in msec */
+ int setlkTimeout; /* Blocking lock timeout, in msec. -1 -> inf. */
#endif
int nSavepoint; /* Number of non-transaction savepoints */
int nStatement; /* Number of nested statement-transactions */