aboutsummaryrefslogtreecommitdiff
path: root/src/os_unix.c
diff options
context:
space:
mode:
authordrh <>2021-05-19 19:27:42 +0000
committerdrh <>2021-05-19 19:27:42 +0000
commit04f4b6836bdb8a9b93d503f2c69e3203be9ea4ab (patch)
tree34702087a475e03b456179f979f2b70c17569744 /src/os_unix.c
parent187e2e48a81fdc1ae4e7d18a097b149d6f7bd705 (diff)
downloadsqlite-04f4b6836bdb8a9b93d503f2c69e3203be9ea4ab.tar.gz
sqlite-04f4b6836bdb8a9b93d503f2c69e3203be9ea4ab.zip
Fix a formatting error on the comment.
FossilOrigin-Name: 6f2fb60e499fc758bea6ffec030fef8ab5f97d08d31450f0b3ffafc20e652891
Diffstat (limited to 'src/os_unix.c')
-rw-r--r--src/os_unix.c19
1 files changed, 10 insertions, 9 deletions
diff --git a/src/os_unix.c b/src/os_unix.c
index 76b4497a6..750b3e170 100644
--- a/src/os_unix.c
+++ b/src/os_unix.c
@@ -8072,15 +8072,16 @@ int sqlite3_os_init(void){
assert( SQLITE_SHM_NLOCK==8 ); /* Number of available locks */
assert( UNIX_SHM_BASE==120 ); /* Start of locking area */
/* Locks:
- /* WRITE UNIX_SHM_BASE 120 */
- /* CKPT UNIX_SHM_BASE+1 121 */
- /* RECOVER UNIX_SHM_BASE+2 122 */
- /* READ-0 UNIX_SHM_BASE+3 123 */
- /* READ-1 UNIX_SHM_BASE+4 124 */
- /* READ-2 UNIX_SHM_BASE+5 125 */
- /* READ-3 UNIX_SHM_BASE+6 126 */
- /* READ-4 UNIX_SHM_BASE+7 127 */
- /* DMS UNIX_SHM_BASE+8 128 */
+ ** WRITE UNIX_SHM_BASE 120
+ ** CKPT UNIX_SHM_BASE+1 121
+ ** RECOVER UNIX_SHM_BASE+2 122
+ ** READ-0 UNIX_SHM_BASE+3 123
+ ** READ-1 UNIX_SHM_BASE+4 124
+ ** READ-2 UNIX_SHM_BASE+5 125
+ ** READ-3 UNIX_SHM_BASE+6 126
+ ** READ-4 UNIX_SHM_BASE+7 127
+ ** DMS UNIX_SHM_BASE+8 128
+ */
assert( UNIX_SHM_DMS==128 ); /* Byte offset of the deadman-switch */
return SQLITE_OK;
}