diff options
author | dan <Dan Kennedy> | 2025-01-30 15:26:16 +0000 |
---|---|---|
committer | dan <Dan Kennedy> | 2025-01-30 15:26:16 +0000 |
commit | 462888819e3582e30c8a513285bd4d524a64f66e (patch) | |
tree | 314ae3c121748130954cfa1221f150d02c58c2cc /src/sqliteInt.h | |
parent | 43aad25b1b535f1c8c44ae964bf53e40eb351378 (diff) | |
download | sqlite-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.h | 2 |
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 */ |