]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Fix a formatting error on the comment. better-comment
authordrh <>
Wed, 19 May 2021 19:27:42 +0000 (19:27 +0000)
committerdrh <>
Wed, 19 May 2021 19:27:42 +0000 (19:27 +0000)
FossilOrigin-Name: 6f2fb60e499fc758bea6ffec030fef8ab5f97d08d31450f0b3ffafc20e652891

manifest
manifest.uuid
src/os_unix.c

index 251c2e344fe77b5599b3711e9ca02a12e8671763..7f07f63dff958e9012eb23b5d3d011c87d6e9991 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Add\sa\stable\sof\sshared-memory\slock\soffsets\sin\sa\scomment\sin\sthe\sos_unix.c\scode.\nInclude\ssome\sassert()s\sto\shelp\sverify\sthe\snumbers.
-D 2021-05-19T16:55:28.355
+C Fix\sa\sformatting\serror\son\sthe\scomment.
+D 2021-05-19T19:27:42.183
 F .fossil-settings/empty-dirs dbb81e8fc0401ac46a1491ab34a7f2c7c0452f2f06b54ebb845d024ca8283ef1
 F .fossil-settings/ignore-glob 35175cdfcf539b2318cb04a9901442804be81cd677d8b889fcc9149c21f239ea
 F LICENSE.md df5091916dbb40e6e9686186587125e1b2ff51f022cc334e886c19a0e9982724
@@ -527,7 +527,7 @@ F src/os.c 6e94cd64b134c9317e52ad534117578e3df66ec180d70dbf4b1d7eb1db8e5a5d
 F src/os.h 48388821692e87da174ea198bf96b1b2d9d83be5dfc908f673ee21fafbe0d432
 F src/os_common.h b2f4707a603e36811d9b1a13278bffd757857b85
 F src/os_setup.h 0dbaea40a7d36bf311613d31342e0b99e2536586
-F src/os_unix.c e96732e6faf20a286a107a060b381ac1a70fd78939fd344091e5b8a33f008726
+F src/os_unix.c efa60c1cb54dba767abbba3c6dd67d3df5ef8aa26e2e499c37f055f56a374068
 F src/os_win.c 77d39873836f1831a9b0b91894fec45ab0e9ca8e067dc8c549e1d1eca1566fe9
 F src/os_win.h 7b073010f1451abe501be30d12f6bc599824944a
 F src/pager.c 95c255256b13827caf038c8f963d334784073f38ab6ef9d70371d9d04f3c43e0
@@ -1913,7 +1913,7 @@ F vsixtest/vsixtest.tcl 6a9a6ab600c25a91a7acc6293828957a386a8a93
 F vsixtest/vsixtest.vcxproj.data 2ed517e100c66dc455b492e1a33350c1b20fbcdc
 F vsixtest/vsixtest.vcxproj.filters 37e51ffedcdb064aad6ff33b6148725226cd608e
 F vsixtest/vsixtest_TemporaryKey.pfx e5b1b036facdb453873e7084e1cae9102ccc67a0
-P 3daab94977af5e8a95690acc555540311403d890a3261a9757c633fcaaf428a9
-R 9d32076e7e00d2e7f5400eef1e259834
+P b480aacb3430a789d98ffd81a1886bbbc3cda5b0e736ec9a3e2b463db2a3b3ad
+R 51a5c10eeb74e980a28bc317ddd05223
 U drh
-Z b4aac95cbd89fc77e944acb5b9058e59
+Z 312f630c2639a44670ce7c2d40505de2
index 1dab90556acdeaba589cea6bc871092da592d86e..eba0a762d52163423bd501d9c497571c6f60f02b 100644 (file)
@@ -1 +1 @@
-b480aacb3430a789d98ffd81a1886bbbc3cda5b0e736ec9a3e2b463db2a3b3ad
\ No newline at end of file
+6f2fb60e499fc758bea6ffec030fef8ab5f97d08d31450f0b3ffafc20e652891
\ No newline at end of file
index 76b4497a698d0180f2e2b39a004bd70b5ed90e3a..750b3e170fcce0229f5d75c0c10496975e3aa351 100644 (file)
@@ -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; 
 }