diff options
author | Keith Bostic <keith@wiredtiger.com> | 2014-01-18 14:52:58 -0500 |
---|---|---|
committer | Keith Bostic <keith@wiredtiger.com> | 2014-01-18 14:52:58 -0500 |
commit | 47cc29aeb758278b9fdbb51e7c3ae37747093d01 (patch) | |
tree | bd40762077f95734b7cfe8ef555ba8b827c84bd1 /ext | |
parent | 03c7453c084936cc38525e1623f759c3752f8331 (diff) | |
download | mongo-47cc29aeb758278b9fdbb51e7c3ae37747093d01.tar.gz |
Add placeholders for he_sys_trace_enabled, Helium debugging flags.
Diffstat (limited to 'ext')
-rw-r--r-- | ext/test/helium/helium.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/ext/test/helium/helium.c b/ext/test/helium/helium.c index 59dff3df821..b74c4ca13b4 100644 --- a/ext/test/helium/helium.c +++ b/ext/test/helium/helium.c @@ -3214,6 +3214,9 @@ helium_terminate(WT_DATA_SOURCE *wtds, WT_SESSION *session) int wiredtiger_extension_init(WT_CONNECTION *connection, WT_CONFIG_ARG *config) { +#if 0 + extern int he_sys_trace_enabled; +#endif /* * List of the WT_DATA_SOURCE methods -- it's static so it breaks at * compile-time should the structure change underneath us. @@ -3243,6 +3246,10 @@ wiredtiger_extension_init(WT_CONNECTION *connection, WT_CONFIG_ARG *config) int vmajor, vminor, ret = 0; const char **p; +#if 0 + he_sys_trace_enabled = 1; +#endif + ds = NULL; wtext = connection->get_extension_api(connection); |