summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/include/api.h13
-rw-r--r--src/include/verify_build.h3
2 files changed, 0 insertions, 16 deletions
diff --git a/src/include/api.h b/src/include/api.h
index 3f3c80450f3..bc1ba5beb1b 100644
--- a/src/include/api.h
+++ b/src/include/api.h
@@ -31,19 +31,6 @@ struct __wt_btree_session {
};
/*
- * WT_SESSION_BUFFER --
- * A structure to accumulate file changes on a per-thread basis.
- */
-struct __wt_session_buffer {
- uint32_t len; /* Buffer original size */
- uint32_t space_avail; /* Buffer's available memory */
- uint8_t *first_free; /* Buffer's first free byte */
-
- uint32_t in; /* Buffer chunks in use */
- uint32_t out; /* Buffer chunks not in use */
-};
-
-/*
* WT_HAZARD --
* A hazard reference.
*/
diff --git a/src/include/verify_build.h b/src/include/verify_build.h
index 9df9b4c7b23..db160065edb 100644
--- a/src/include/verify_build.h
+++ b/src/include/verify_build.h
@@ -46,9 +46,6 @@ __wt_verify_build(void)
/* On-disk structures should not be padded. */
SIZE_CHECK(WT_BLOCK_DESC, WT_BLOCK_DESC_SIZE);
- /* Some structures must be aligned correctly. */
- ALIGN_CHECK(WT_SESSION_BUFFER, sizeof(uint32_t));
-
/*
* We mix-and-match 32-bit unsigned values and size_t's, mostly because
* we allocate and handle 32-bit objects, and lots of the underlying C