diff options
author | drh <> | 2023-02-23 14:22:29 +0000 |
---|---|---|
committer | drh <> | 2023-02-23 14:22:29 +0000 |
commit | ad96db8df5e6b80ac8139487c4ae915f9cdea9a0 (patch) | |
tree | af72645b38e05adb171fe3ab9a3fd515eba0605a /src/sqliteInt.h | |
parent | 3c2688d13770ea405d890eb7949a675eb237db20 (diff) | |
download | sqlite-ad96db8df5e6b80ac8139487c4ae915f9cdea9a0.tar.gz sqlite-ad96db8df5e6b80ac8139487c4ae915f9cdea9a0.zip |
Allow the sqlite3_config() interface to be invoked at any time for a few
choosen options: SQLITE_CONFIG_LOG, SQLITE_CONFIG_URI, and
SQLITE_CONFIG_PCACHE_HDRSZ. This list will likely change before release.
FossilOrigin-Name: e1702eb48d13c7c9b7605f1e77242672222c53059edcdc4e9cea59510715822a
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 459af6b4e..40afc08db 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -224,8 +224,8 @@ #endif /* -** WAL mode depends on atomic aligned 32-bit loads and stores in a few -** places. The following macros try to make this explicit. +** A few places in the code require atomic load/store of aligned +** integer values. */ #ifndef __has_extension # define __has_extension(x) 0 /* compatibility with non-clang compilers */ |