Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Overview
Comment: | Use "&" instead of raw "&" inside the malloc.html document. |
---|---|
Downloads: | Tarball | ZIP archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
8d2b596b5e70f554d9c2fb3e277cf8b4 |
User & Date: | drh 2012-08-31 17:28:03.342 |
Context
2012-09-03
| ||
15:46 | Push the 3.7.14 release date forward by two days. (check-in: 036b419808 user: drh tags: trunk) | |
2012-08-31
| ||
17:28 | Use "&" instead of raw "&" inside the malloc.html document. (check-in: 8d2b596b5e user: drh tags: trunk) | |
2012-08-29
| ||
18:17 | Fix a few minor typos. (check-in: ac94eb8835 user: drh tags: trunk) | |
Changes
Changes to pages/malloc.in.
︙ | ︙ | |||
626 627 628 629 630 631 632 | <p>The "onoff" parameter is true to enable the tracking of memory statistics and false to disable statistics tracking.</p> <p>Assuming statistics are enabled, the following routine can be used to access them:</p> <blockquote><pre> | | | | 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 | <p>The "onoff" parameter is true to enable the tracking of memory statistics and false to disable statistics tracking.</p> <p>Assuming statistics are enabled, the following routine can be used to access them:</p> <blockquote><pre> [sqlite3_status]([SQLITE_STATUS_MEMORY_USED|verb], &current, &highwater, resetflag); </pre></blockquote> <p>The "verb" argument determines what statistic is accessed. There are [SQLITE_STATUS_MEMORY_USED | various verbs] defined. The list is expected to grow as the [sqlite3_status()] interface matures. The current value the selected parameter is written into integer "current" and the highest historical value is written into integer "highwater". If resetflag is true, then the high-water mark is reset down to the current value after the call returns.</p> <p>A different interface is used to find statistics associated with a single [database connection]:</p> <blockquote><pre> [sqlite3_db_status](db, [SQLITE_DBSTATUS_LOOKASIDE_USED|verb], &current, &highwater, resetflag); </pre></blockquote> <p>This interface is similar except that it takes a pointer to a [database connection] as its first argument and returns statistics about that one object rather than about the entire SQLite library. The [sqlite3_db_status()] interface currently only recognizes a single verb [SQLITE_DBSTATUS_LOOKASIDE_USED], though additional verbs |
︙ | ︙ |