#include "HashMap.h"#include "Mutex.h"#include "String.h"#include "StringExt.h"

Go to the source code of this file.
Classes | |
| class | Hypertable::FailureInducer |
| struct | Hypertable::FailureInducer::failure_inducer_state |
Namespaces | |
| namespace | Hypertable |
Copyright (C) 2009 Doug Judd (Zvents, Inc.) | |
Defines | |
| #define | HT_MAYBE_FAIL(_label_) |
| #define | HT_MAYBE_FAIL_X(_label_, _exp_) |
| #define HT_MAYBE_FAIL | ( | _label_ ) |
if (Hypertable::FailureInducer::enabled()) { \ Hypertable::FailureInducer::instance->maybe_fail(_label_); \ }
Definition at line 53 of file FailureInducer.h.
| #define HT_MAYBE_FAIL_X | ( | _label_, | |
| _exp_ | |||
| ) |
if (Hypertable::FailureInducer::enabled() && (_exp_)) { \ Hypertable::FailureInducer::instance->maybe_fail(_label_); \ }
Definition at line 58 of file FailureInducer.h.
1.7.2