]> git.sur5r.net Git - openldap/commitdiff
Doc tweak
authorHoward Chu <hyc@symas.com>
Tue, 12 Nov 2013 16:10:33 +0000 (08:10 -0800)
committerHoward Chu <hyc@symas.com>
Tue, 12 Nov 2013 16:10:33 +0000 (08:10 -0800)
Measured perf cost of meminit was 7% worst case on an Intel Core2
system. YMMV.

libraries/liblmdb/lmdb.h

index 8d4d7653b0c62072340d5ab629faa2ffb1919d4e..fb512bf9d8165b12dd30984c53454a06167d9b1c 100644 (file)
@@ -567,8 +567,8 @@ int  mdb_env_create(MDB_env **env);
         *              code (that used the heap and subsequently freed the memory) into the
         *              data file. Note that many other system libraries may allocate
         *              and free memory from the heap for arbitrary uses. E.g., stdio may
-        *              use the heap for file I/O buffers. This initialization step comes
-        *              at some performance cost so some applications may want to disable
+        *              use the heap for file I/O buffers. This initialization step has a
+        *              modest performance cost so some applications may want to disable
         *              it using this flag. This option can be a problem for applications
         *              which handle sensitive data like passwords, and it makes memory
         *              checkers like Valgrind noisy. This flag is not needed with #MDB_WRITEMAP,