OLD | NEW |
1 /* | 1 /* |
2 ** 2010 February 1 | 2 ** 2010 February 1 |
3 ** | 3 ** |
4 ** The author disclaims copyright to this source code. In place of | 4 ** The author disclaims copyright to this source code. In place of |
5 ** a legal notice, here is a blessing: | 5 ** a legal notice, here is a blessing: |
6 ** | 6 ** |
7 ** May you do good and not evil. | 7 ** May you do good and not evil. |
8 ** May you find forgiveness for yourself and forgive others. | 8 ** May you find forgiveness for yourself and forgive others. |
9 ** May you share freely, never taking more than you give. | 9 ** May you share freely, never taking more than you give. |
10 ** | 10 ** |
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
109 int sqlite3WalExclusiveMode(Wal *pWal, int op); | 109 int sqlite3WalExclusiveMode(Wal *pWal, int op); |
110 | 110 |
111 /* Return true if the argument is non-NULL and the WAL module is using | 111 /* Return true if the argument is non-NULL and the WAL module is using |
112 ** heap-memory for the wal-index. Otherwise, if the argument is NULL or the | 112 ** heap-memory for the wal-index. Otherwise, if the argument is NULL or the |
113 ** WAL module is using shared-memory, return false. | 113 ** WAL module is using shared-memory, return false. |
114 */ | 114 */ |
115 int sqlite3WalHeapMemory(Wal *pWal); | 115 int sqlite3WalHeapMemory(Wal *pWal); |
116 | 116 |
117 #endif /* ifndef SQLITE_OMIT_WAL */ | 117 #endif /* ifndef SQLITE_OMIT_WAL */ |
118 #endif /* _WAL_H_ */ | 118 #endif /* _WAL_H_ */ |
OLD | NEW |