summaryrefslogtreecommitdiff
path: root/src/include/extern.h
diff options
context:
space:
mode:
authorSusan LoVerso <sue@wiredtiger.com>2015-03-31 16:49:47 -0400
committerMichael Cahill <michael.cahill@mongodb.com>2015-04-25 12:34:01 +1000
commitfccd9f8cbcfe223cf1d87f5cd41ddd8663532c9c (patch)
treedf1d9cee9f8beaee7f6caa625bcc40e322a0ebe8 /src/include/extern.h
parentde0272bc8739dfa73142aa23aabc015410d1fa9a (diff)
downloadmongo-fccd9f8cbcfe223cf1d87f5cd41ddd8663532c9c.tar.gz
Modify log_scan callback args to send in next LSN. #1837
Diffstat (limited to 'src/include/extern.h')
-rw-r--r--src/include/extern.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/extern.h b/src/include/extern.h
index 86c8f501eb2..20b50e2396e 100644
--- a/src/include/extern.h
+++ b/src/include/extern.h
@@ -326,7 +326,7 @@ extern int __wt_log_open(WT_SESSION_IMPL *session);
extern int __wt_log_close(WT_SESSION_IMPL *session);
extern int __wt_log_newfile(WT_SESSION_IMPL *session, int conn_create, int *created);
extern int __wt_log_read(WT_SESSION_IMPL *session, WT_ITEM *record, WT_LSN *lsnp, uint32_t flags);
-extern int __wt_log_scan(WT_SESSION_IMPL *session, WT_LSN *lsnp, uint32_t flags, int (*func)(WT_SESSION_IMPL *session, WT_ITEM *record, WT_LSN *lsnp, void *cookie, int firstrecord), void *cookie);
+extern int __wt_log_scan(WT_SESSION_IMPL *session, WT_LSN *lsnp, uint32_t flags, int (*func)(WT_SESSION_IMPL *session, WT_ITEM *record, WT_LSN *lsnp, WT_LSN *next_lsnp, void *cookie, int firstrecord), void *cookie);
extern int __wt_log_write(WT_SESSION_IMPL *session, WT_ITEM *record, WT_LSN *lsnp, uint32_t flags);
extern int __wt_log_vprintf(WT_SESSION_IMPL *session, const char *fmt, va_list ap);
extern int __wt_logrec_alloc(WT_SESSION_IMPL *session, size_t size, WT_ITEM **logrecp);