Commit 3817fd16 authored by John Esmet's avatar John Esmet

refs #190 Remove conditonal compilation of lambda code, which isn't widely...

refs #190 Remove conditonal compilation of lambda code, which isn't widely supported on older systems
parent 2f1eccd4
...@@ -105,11 +105,6 @@ PATENT RIGHTS GRANT: ...@@ -105,11 +105,6 @@ PATENT RIGHTS GRANT:
#include "wfg.h" #include "wfg.h"
#include "range_buffer.h" #include "range_buffer.h"
#define TOKU_LOCKTREE_ESCALATOR_LAMBDA 0
#if TOKU_LOCKTREE_ESCALATOR_LAMBDA
#include <functional>
#endif
enum { enum {
LTM_SIZE_CURRENT = 0, LTM_SIZE_CURRENT = 0,
LTM_SIZE_LIMIT, LTM_SIZE_LIMIT,
......
...@@ -304,11 +304,6 @@ void locktree::manager::release_lt(locktree *lt) { ...@@ -304,11 +304,6 @@ void locktree::manager::release_lt(locktree *lt) {
} }
// test-only version of lock escalation // test-only version of lock escalation
#if TOKU_LOCKTREE_ESCALATOR_LAMBDA
void locktree::manager::run_escalation(void) {
m_escalator.run(this, [this] () -> void { escalate_all_locktrees(); });
}
#else
static void manager_run_escalation_fun(void *extra) { static void manager_run_escalation_fun(void *extra) {
locktree::manager *thismanager = (locktree::manager *) extra; locktree::manager *thismanager = (locktree::manager *) extra;
thismanager->escalate_all_locktrees(); thismanager->escalate_all_locktrees();
...@@ -317,14 +312,12 @@ static void manager_run_escalation_fun(void *extra) { ...@@ -317,14 +312,12 @@ static void manager_run_escalation_fun(void *extra) {
void locktree::manager::run_escalation(void) { void locktree::manager::run_escalation(void) {
m_escalator.run(this, manager_run_escalation_fun, this); m_escalator.run(this, manager_run_escalation_fun, this);
} }
#endif
void locktree::manager::run_escalation_for_test(void) { void locktree::manager::run_escalation_for_test(void) {
run_escalation(); run_escalation();
} }
void locktree::manager::escalate_all_locktrees(void) { void locktree::manager::escalate_all_locktrees(void) {
if (0) fprintf(stderr, "%d %s:%u\n", toku_os_gettid(), __PRETTY_FUNCTION__, __LINE__);
uint64_t t0 = toku_current_time_microsec(); uint64_t t0 = toku_current_time_microsec();
// get all locktrees // get all locktrees
...@@ -459,7 +452,6 @@ void locktree::manager::add_escalator_wait_time(uint64_t t) { ...@@ -459,7 +452,6 @@ void locktree::manager::add_escalator_wait_time(uint64_t t) {
} }
void locktree::manager::escalate_locktrees(locktree **locktrees, int num_locktrees) { void locktree::manager::escalate_locktrees(locktree **locktrees, int num_locktrees) {
if (0) fprintf(stderr, "%d %s:%u %d\n", toku_os_gettid(), __PRETTY_FUNCTION__, __LINE__, num_locktrees);
// there are too many row locks in the system and we need to tidy up. // there are too many row locks in the system and we need to tidy up.
// //
// a simple implementation of escalation does not attempt // a simple implementation of escalation does not attempt
...@@ -481,7 +473,6 @@ void locktree::manager::escalate_locktrees(locktree **locktrees, int num_locktre ...@@ -481,7 +473,6 @@ void locktree::manager::escalate_locktrees(locktree **locktrees, int num_locktre
toku_mutex_unlock(&m_escalation_mutex); toku_mutex_unlock(&m_escalation_mutex);
} }
#if !TOKU_LOCKTREE_ESCALATOR_LAMBDA
struct escalate_args { struct escalate_args {
locktree::manager *mgr; locktree::manager *mgr;
locktree **locktrees; locktree **locktrees;
...@@ -492,7 +483,6 @@ static void manager_escalate_locktrees(void *extra) { ...@@ -492,7 +483,6 @@ static void manager_escalate_locktrees(void *extra) {
escalate_args *args = (escalate_args *) extra; escalate_args *args = (escalate_args *) extra;
args->mgr->escalate_locktrees(args->locktrees, args->num_locktrees); args->mgr->escalate_locktrees(args->locktrees, args->num_locktrees);
} }
#endif
void locktree::manager::escalate_lock_trees_for_txn(TXNID txnid UU(), locktree *lt UU()) { void locktree::manager::escalate_lock_trees_for_txn(TXNID txnid UU(), locktree *lt UU()) {
// get lock trees for txnid // get lock trees for txnid
...@@ -503,12 +493,8 @@ void locktree::manager::escalate_lock_trees_for_txn(TXNID txnid UU(), locktree * ...@@ -503,12 +493,8 @@ void locktree::manager::escalate_lock_trees_for_txn(TXNID txnid UU(), locktree *
// escalate these lock trees // escalate these lock trees
locktree::escalator this_escalator; locktree::escalator this_escalator;
this_escalator.create(); this_escalator.create();
#if TOKU_LOCKTREE_ESCALATOR_LAMBDA
this_escalator.run(this, [this,locktrees,num_locktrees] () -> void { escalate_locktrees(locktrees, num_locktrees); });
#else
escalate_args args = { this, locktrees, num_locktrees }; escalate_args args = { this, locktrees, num_locktrees };
this_escalator.run(this, manager_escalate_locktrees, &args); this_escalator.run(this, manager_escalate_locktrees, &args);
#endif
this_escalator.destroy(); this_escalator.destroy();
} }
...@@ -524,22 +510,14 @@ void locktree::escalator::destroy(void) { ...@@ -524,22 +510,14 @@ void locktree::escalator::destroy(void) {
toku_mutex_destroy(&m_escalator_mutex); toku_mutex_destroy(&m_escalator_mutex);
} }
#if TOKU_LOCKTREE_ESCALATOR_LAMBDA void locktree::escalator::run(locktree::manager *mgr, void (*escalate_locktrees_fun)(void *extra), void *extra) {
void locktree::escalator::run(locktree::manager *mgr, std::function<void (void)> escalate_locktrees_fun) {
#else
void locktree::escalator::run(locktree::manager *mgr, void (*escalate_locktrees_fun)(void *extra), void *extra) {
#endif
uint64_t t0 = toku_current_time_microsec(); uint64_t t0 = toku_current_time_microsec();
toku_mutex_lock(&m_escalator_mutex); toku_mutex_lock(&m_escalator_mutex);
if (!m_escalator_running) { if (!m_escalator_running) {
// run escalation on this thread // run escalation on this thread
m_escalator_running = true; m_escalator_running = true;
toku_mutex_unlock(&m_escalator_mutex); toku_mutex_unlock(&m_escalator_mutex);
#if TOKU_LOCKTREE_ESCALATOR_LAMBDA
escalate_locktrees_fun();
#else
escalate_locktrees_fun(extra); escalate_locktrees_fun(extra);
#endif
toku_mutex_lock(&m_escalator_mutex); toku_mutex_lock(&m_escalator_mutex);
m_escalator_running = false; m_escalator_running = false;
toku_cond_broadcast(&m_escalator_done); toku_cond_broadcast(&m_escalator_done);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment