Skip to content

Commit

Permalink
Add trace logs to major public APIs and critical operations
Browse files Browse the repository at this point in the history
  • Loading branch information
umegane committed Dec 18, 2024
1 parent 27cd7df commit 6db2f58
Show file tree
Hide file tree
Showing 3 changed files with 77 additions and 8 deletions.
31 changes: 23 additions & 8 deletions src/limestone/datastore.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -154,21 +154,25 @@ static void write_epoch_to_file_internal(const std::string& file_path, epoch_id_
}

void datastore::write_epoch_to_file(epoch_id_type epoch_id) {
TRACE_START << "epoch_id=" << epoch_id;

Check warning on line 157 in src/limestone/datastore.cpp

View workflow job for this annotation

GitHub Actions / Clang-Tidy

cppcoreguidelines-pro-bounds-array-to-pointer-decay

do not implicitly decay an array into a pointer; consider using gsl::array_view or an explicit cast instead

Check warning on line 157 in src/limestone/datastore.cpp

View workflow job for this annotation

GitHub Actions / Clang-Tidy

cppcoreguidelines-pro-bounds-pointer-arithmetic

do not use pointer arithmetic
if (++epoch_write_counter >= max_entries_in_epoch_file) {
write_epoch_to_file_internal(tmp_epoch_file_path_.string(), epoch_id, file_write_mode::overwrite);

boost::system::error_code ec;
if (::rename(tmp_epoch_file_path_.c_str(), epoch_file_path_.c_str()) != 0) {
TRACE_ABORT;

Check warning on line 163 in src/limestone/datastore.cpp

View workflow job for this annotation

GitHub Actions / Clang-Tidy

cppcoreguidelines-pro-bounds-array-to-pointer-decay

do not implicitly decay an array into a pointer; consider using gsl::array_view or an explicit cast instead

Check warning on line 163 in src/limestone/datastore.cpp

View workflow job for this annotation

GitHub Actions / Clang-Tidy

cppcoreguidelines-pro-bounds-pointer-arithmetic

do not use pointer arithmetic
LOG_AND_THROW_IO_EXCEPTION("Failed to rename temp file: " + tmp_epoch_file_path_.string() + " to " + epoch_file_path_.string(), errno);
}
boost::filesystem::remove(tmp_epoch_file_path_, ec);
if (ec) {
TRACE_ABORT;
LOG_AND_THROW_IO_EXCEPTION("Failed to remove temp file: " + tmp_epoch_file_path_.string(), ec);
}
epoch_write_counter = 0;
} else {
write_epoch_to_file_internal(epoch_file_path_.string(), epoch_id, file_write_mode::append);
}
TRACE_END;
}


Expand Down Expand Up @@ -210,6 +214,7 @@ log_channel& datastore::create_channel(const boost::filesystem::path& location)
epoch_id_type datastore::last_epoch() const noexcept { return static_cast<epoch_id_type>(epoch_id_informed_.load()); }

void datastore::switch_epoch(epoch_id_type new_epoch_id) {
TRACE_START << "new_epoch_id=" << new_epoch_id;
try {
check_after_ready(static_cast<const char*>(__func__));
auto neid = static_cast<std::uint64_t>(new_epoch_id);
Expand All @@ -222,16 +227,20 @@ void datastore::switch_epoch(epoch_id_type new_epoch_id) {
update_min_epoch_id(true);
}
} catch (...) {
TRACE_ABORT;
HANDLE_EXCEPTION_AND_ABORT();
}
TRACE_END;
}

void datastore::update_min_epoch_id(bool from_switch_epoch) { // NOLINT(readability-function-cognitive-complexity)
TRACE_START << "from_switch_epoch=" << from_switch_epoch;
auto upper_limit = epoch_id_switched_.load();
if (upper_limit == 0) {
return; // If epoch_id_switched_ is zero, it means no epoch has been switched, so updating epoch_id_to_be_recorded_ and epoch_id_informed_ is unnecessary.
}
upper_limit--;

epoch_id_type max_finished_epoch = 0;

for (const auto& e : log_channels_) {
Expand All @@ -247,6 +256,8 @@ void datastore::update_min_epoch_id(bool from_switch_epoch) { // NOLINT(readabi
}
}

TRACE << "epoch_id_switched_ = " << epoch_id_switched_.load() << ", upper_limit = " << upper_limit << ", max_finished_epoch = " << max_finished_epoch;

// update recorded_epoch_
auto to_be_epoch = upper_limit;
if (from_switch_epoch && (to_be_epoch > static_cast<std::uint64_t>(max_finished_epoch))) {
Expand All @@ -265,6 +276,7 @@ void datastore::update_min_epoch_id(bool from_switch_epoch) { // NOLINT(readabi
}
}
if (to_be_epoch > epoch_id_record_finished_.load()) {
TRACE_END;
return;
}

Expand All @@ -285,7 +297,9 @@ void datastore::update_min_epoch_id(bool from_switch_epoch) { // NOLINT(readabi
break;
}
if (persistent_callback_) {
TRACE << "start calling persistent callback to " << to_be_epoch;
persistent_callback_(to_be_epoch);
TRACE << "end calling persistent callback to " << to_be_epoch;
}
}
{
Expand All @@ -296,6 +310,7 @@ void datastore::update_min_epoch_id(bool from_switch_epoch) { // NOLINT(readabi
break;
}
}
TRACE_END;
}


Expand Down Expand Up @@ -450,14 +465,14 @@ void datastore::recover([[maybe_unused]] const epoch_tag& tag) const noexcept {
}

rotation_result datastore::rotate_log_files() {
VLOG(50) << "start rotate_log_files()";
TRACE_START;
std::lock_guard<std::mutex> lock(rotate_mutex);
VLOG(50) << "start rotate_log_files() critical section";
TRACE << "start rotate_log_files() critical section";
auto epoch_id = epoch_id_switched_.load();
if (epoch_id == 0) {
LOG_AND_THROW_EXCEPTION("rotation requires epoch_id > 0, but got epoch_id = 0");
}
VLOG(50) << "epoch_id = " << epoch_id;
TRACE << "epoch_id = " << epoch_id;
{
on_wait1();
// Wait until epoch_id_informed_ is less than rotated_epoch_id to ensure safe rotation.
Expand All @@ -466,7 +481,7 @@ rotation_result datastore::rotate_log_files() {
cv_epoch_informed.wait(ul);
}
}
VLOG(50) << "end waiting for epoch_id_informed_ to catch up";
TRACE << "end waiting for epoch_id_informed_ to catch up";
rotation_result result(epoch_id);
for (const auto& lc : log_channels_) {
boost::system::error_code error;
Expand All @@ -478,7 +493,7 @@ rotation_result datastore::rotate_log_files() {
result.add_rotated_file(rotated_file);
}
result.set_rotation_end_files(get_files());
VLOG(50) << "end rotate_log_files()";
TRACE_END;
return result;
}

Expand Down Expand Up @@ -586,7 +601,7 @@ void datastore::stop_online_compaction_worker() {
}

void datastore::compact_with_online() {
VLOG(50) << "start compact_with_online()";
TRACE_START;
check_after_ready(static_cast<const char*>(__func__));

// rotate first
Expand All @@ -606,7 +621,7 @@ void datastore::compact_with_online() {
(need_compaction_filenames.size() == 1 &&
need_compaction_filenames.find(compaction_catalog::get_compacted_filename()) != need_compaction_filenames.end())) {
LOG_LP(INFO) << "no files to compact";
VLOG(50) << "return compact_with_online() without compaction";
TRACE_END << "return compact_with_online() without compaction";
return;
}

Expand Down Expand Up @@ -655,7 +670,7 @@ void datastore::compact_with_online() {
remove_file_safely(location_ / compaction_catalog::get_compacted_backup_filename());

LOG_LP(INFO) << "compaction finished";
VLOG(50) << "end compact_with_online()";
TRACE_END;
}

} // namespace limestone::api
Expand Down
21 changes: 21 additions & 0 deletions src/limestone/log_channel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ void log_channel::begin_session() {
current_epoch_id_.store(envelope_.epoch_id_switched_.load());
std::atomic_thread_fence(std::memory_order_acq_rel);
} while (current_epoch_id_.load() != envelope_.epoch_id_switched_.load());
TRACE_START << "current_epoch_id_=" << current_epoch_id_.load();

Check warning on line 62 in src/limestone/log_channel.cpp

View workflow job for this annotation

GitHub Actions / Clang-Tidy

cppcoreguidelines-pro-bounds-array-to-pointer-decay

do not implicitly decay an array into a pointer; consider using gsl::array_view or an explicit cast instead

Check warning on line 62 in src/limestone/log_channel.cpp

View workflow job for this annotation

GitHub Actions / Clang-Tidy

cppcoreguidelines-pro-bounds-pointer-arithmetic

do not use pointer arithmetic

auto log_file = file_path();
strm_ = fopen(log_file.c_str(), "a"); // NOLINT(*-owning-memory)
Expand All @@ -71,13 +72,16 @@ void log_channel::begin_session() {
registered_ = true;
}
log_entry::begin_session(strm_, static_cast<epoch_id_type>(current_epoch_id_.load()));
TRACE_END;

Check warning on line 75 in src/limestone/log_channel.cpp

View workflow job for this annotation

GitHub Actions / Clang-Tidy

cppcoreguidelines-pro-bounds-array-to-pointer-decay

do not implicitly decay an array into a pointer; consider using gsl::array_view or an explicit cast instead

Check warning on line 75 in src/limestone/log_channel.cpp

View workflow job for this annotation

GitHub Actions / Clang-Tidy

cppcoreguidelines-pro-bounds-pointer-arithmetic

do not use pointer arithmetic
} catch (...) {
TRACE_ABORT;

Check warning on line 77 in src/limestone/log_channel.cpp

View workflow job for this annotation

GitHub Actions / Clang-Tidy

cppcoreguidelines-pro-bounds-array-to-pointer-decay

do not implicitly decay an array into a pointer; consider using gsl::array_view or an explicit cast instead

Check warning on line 77 in src/limestone/log_channel.cpp

View workflow job for this annotation

GitHub Actions / Clang-Tidy

cppcoreguidelines-pro-bounds-pointer-arithmetic

do not use pointer arithmetic
HANDLE_EXCEPTION_AND_ABORT();
}
}

void log_channel::end_session() {
try {
TRACE_START << "current_epoch_id_=" << current_epoch_id_.load();

Check warning on line 84 in src/limestone/log_channel.cpp

View workflow job for this annotation

GitHub Actions / Clang-Tidy

cppcoreguidelines-pro-bounds-array-to-pointer-decay

do not implicitly decay an array into a pointer; consider using gsl::array_view or an explicit cast instead

Check warning on line 84 in src/limestone/log_channel.cpp

View workflow job for this annotation

GitHub Actions / Clang-Tidy

cppcoreguidelines-pro-bounds-pointer-arithmetic

do not use pointer arithmetic
if (fflush(strm_) != 0) {
LOG_AND_THROW_IO_EXCEPTION("fflush failed", errno);
}
Expand All @@ -91,7 +95,9 @@ void log_channel::end_session() {
if (fclose(strm_) != 0) { // NOLINT(*-owning-memory)
LOG_AND_THROW_IO_EXCEPTION("fclose failed", errno);
}
TRACE_END;

Check warning on line 98 in src/limestone/log_channel.cpp

View workflow job for this annotation

GitHub Actions / Clang-Tidy

cppcoreguidelines-pro-bounds-array-to-pointer-decay

do not implicitly decay an array into a pointer; consider using gsl::array_view or an explicit cast instead

Check warning on line 98 in src/limestone/log_channel.cpp

View workflow job for this annotation

GitHub Actions / Clang-Tidy

cppcoreguidelines-pro-bounds-pointer-arithmetic

do not use pointer arithmetic
} catch (...) {
TRACE_ABORT;

Check warning on line 100 in src/limestone/log_channel.cpp

View workflow job for this annotation

GitHub Actions / Clang-Tidy

cppcoreguidelines-pro-bounds-array-to-pointer-decay

do not implicitly decay an array into a pointer; consider using gsl::array_view or an explicit cast instead

Check warning on line 100 in src/limestone/log_channel.cpp

View workflow job for this annotation

GitHub Actions / Clang-Tidy

cppcoreguidelines-pro-bounds-pointer-arithmetic

do not use pointer arithmetic
HANDLE_EXCEPTION_AND_ABORT();
}
}
Expand All @@ -106,52 +112,67 @@ void log_channel::abort_session([[maybe_unused]] status status_code, [[maybe_unu
}

void log_channel::add_entry(storage_id_type storage_id, std::string_view key, std::string_view value, write_version_type write_version) {
TRACE_START << "storage_id=" << storage_id << ", key=" << key << ",value = " << value << ", epoch =" << write_version.epoch_number_ << ", minor =" << write_version.minor_write_version_;

Check warning on line 115 in src/limestone/log_channel.cpp

View workflow job for this annotation

GitHub Actions / Clang-Tidy

cppcoreguidelines-pro-bounds-array-to-pointer-decay

do not implicitly decay an array into a pointer; consider using gsl::array_view or an explicit cast instead

Check warning on line 115 in src/limestone/log_channel.cpp

View workflow job for this annotation

GitHub Actions / Clang-Tidy

cppcoreguidelines-pro-bounds-pointer-arithmetic

do not use pointer arithmetic
try {
log_entry::write(strm_, storage_id, key, value, write_version);
write_version_ = write_version;
} catch (...) {
TRACE_ABORT;

Check warning on line 120 in src/limestone/log_channel.cpp

View workflow job for this annotation

GitHub Actions / Clang-Tidy

cppcoreguidelines-pro-bounds-array-to-pointer-decay

do not implicitly decay an array into a pointer; consider using gsl::array_view or an explicit cast instead

Check warning on line 120 in src/limestone/log_channel.cpp

View workflow job for this annotation

GitHub Actions / Clang-Tidy

cppcoreguidelines-pro-bounds-pointer-arithmetic

do not use pointer arithmetic
HANDLE_EXCEPTION_AND_ABORT();
}
TRACE_END;

Check warning on line 123 in src/limestone/log_channel.cpp

View workflow job for this annotation

GitHub Actions / Clang-Tidy

cppcoreguidelines-pro-bounds-array-to-pointer-decay

do not implicitly decay an array into a pointer; consider using gsl::array_view or an explicit cast instead

Check warning on line 123 in src/limestone/log_channel.cpp

View workflow job for this annotation

GitHub Actions / Clang-Tidy

cppcoreguidelines-pro-bounds-pointer-arithmetic

do not use pointer arithmetic
}

void log_channel::add_entry([[maybe_unused]] storage_id_type storage_id, [[maybe_unused]] std::string_view key, [[maybe_unused]] std::string_view value, [[maybe_unused]] write_version_type write_version, [[maybe_unused]] const std::vector<large_object_input>& large_objects) {
LOG_AND_THROW_EXCEPTION("not implemented");// FIXME
};

void log_channel::remove_entry(storage_id_type storage_id, std::string_view key, write_version_type write_version) {
TRACE_START << "storage_id=" << storage_id << ", key=" << key << ", epoch =" << write_version.epoch_number_ << ", minor =" << write_version.minor_write_version_;

Check warning on line 131 in src/limestone/log_channel.cpp

View workflow job for this annotation

GitHub Actions / Clang-Tidy

cppcoreguidelines-pro-bounds-array-to-pointer-decay

do not implicitly decay an array into a pointer; consider using gsl::array_view or an explicit cast instead

Check warning on line 131 in src/limestone/log_channel.cpp

View workflow job for this annotation

GitHub Actions / Clang-Tidy

cppcoreguidelines-pro-bounds-pointer-arithmetic

do not use pointer arithmetic
try {
log_entry::write_remove(strm_, storage_id, key, write_version);
write_version_ = write_version;
} catch (...) {
TRACE_ABORT;

Check warning on line 136 in src/limestone/log_channel.cpp

View workflow job for this annotation

GitHub Actions / Clang-Tidy

cppcoreguidelines-pro-bounds-array-to-pointer-decay

do not implicitly decay an array into a pointer; consider using gsl::array_view or an explicit cast instead

Check warning on line 136 in src/limestone/log_channel.cpp

View workflow job for this annotation

GitHub Actions / Clang-Tidy

cppcoreguidelines-pro-bounds-pointer-arithmetic

do not use pointer arithmetic
HANDLE_EXCEPTION_AND_ABORT();
}
TRACE_END;

Check warning on line 139 in src/limestone/log_channel.cpp

View workflow job for this annotation

GitHub Actions / Clang-Tidy

cppcoreguidelines-pro-bounds-array-to-pointer-decay

do not implicitly decay an array into a pointer; consider using gsl::array_view or an explicit cast instead

Check warning on line 139 in src/limestone/log_channel.cpp

View workflow job for this annotation

GitHub Actions / Clang-Tidy

cppcoreguidelines-pro-bounds-pointer-arithmetic

do not use pointer arithmetic
}

void log_channel::add_storage(storage_id_type storage_id, write_version_type write_version) {
TRACE_START << "storage_id=" << storage_id << ", epoch =" << write_version.epoch_number_ << ", minor =" << write_version.minor_write_version_;

Check warning on line 143 in src/limestone/log_channel.cpp

View workflow job for this annotation

GitHub Actions / Clang-Tidy

cppcoreguidelines-pro-bounds-array-to-pointer-decay

do not implicitly decay an array into a pointer; consider using gsl::array_view or an explicit cast instead

Check warning on line 143 in src/limestone/log_channel.cpp

View workflow job for this annotation

GitHub Actions / Clang-Tidy

cppcoreguidelines-pro-bounds-pointer-arithmetic

do not use pointer arithmetic
try {
log_entry::write_add_storage(strm_, storage_id, write_version);
write_version_ = write_version;
} catch (...) {
TRACE_ABORT;

Check warning on line 148 in src/limestone/log_channel.cpp

View workflow job for this annotation

GitHub Actions / Clang-Tidy

cppcoreguidelines-pro-bounds-array-to-pointer-decay

do not implicitly decay an array into a pointer; consider using gsl::array_view or an explicit cast instead

Check warning on line 148 in src/limestone/log_channel.cpp

View workflow job for this annotation

GitHub Actions / Clang-Tidy

cppcoreguidelines-pro-bounds-pointer-arithmetic

do not use pointer arithmetic
HANDLE_EXCEPTION_AND_ABORT();
}
VLOG(50) << "end add_storage() with storage_id=" << storage_id << ", epoch =" << write_version.epoch_number_ << ", minor =" << write_version.minor_write_version_;
}

void log_channel::remove_storage(storage_id_type storage_id, write_version_type write_version) {
TRACE_START << "storage_id=" << storage_id << ", epoch =" << write_version.epoch_number_ << ", minor =" << write_version.minor_write_version_;

Check warning on line 155 in src/limestone/log_channel.cpp

View workflow job for this annotation

GitHub Actions / Clang-Tidy

cppcoreguidelines-pro-bounds-array-to-pointer-decay

do not implicitly decay an array into a pointer; consider using gsl::array_view or an explicit cast instead

Check warning on line 155 in src/limestone/log_channel.cpp

View workflow job for this annotation

GitHub Actions / Clang-Tidy

cppcoreguidelines-pro-bounds-pointer-arithmetic

do not use pointer arithmetic
try {
log_entry::write_remove_storage(strm_, storage_id, write_version);
write_version_ = write_version;
} catch (...) {
TRACE_ABORT;

Check warning on line 160 in src/limestone/log_channel.cpp

View workflow job for this annotation

GitHub Actions / Clang-Tidy

cppcoreguidelines-pro-bounds-array-to-pointer-decay

do not implicitly decay an array into a pointer; consider using gsl::array_view or an explicit cast instead

Check warning on line 160 in src/limestone/log_channel.cpp

View workflow job for this annotation

GitHub Actions / Clang-Tidy

cppcoreguidelines-pro-bounds-pointer-arithmetic

do not use pointer arithmetic
HANDLE_EXCEPTION_AND_ABORT();
}
TRACE_END;

Check warning on line 163 in src/limestone/log_channel.cpp

View workflow job for this annotation

GitHub Actions / Clang-Tidy

cppcoreguidelines-pro-bounds-array-to-pointer-decay

do not implicitly decay an array into a pointer; consider using gsl::array_view or an explicit cast instead

Check warning on line 163 in src/limestone/log_channel.cpp

View workflow job for this annotation

GitHub Actions / Clang-Tidy

cppcoreguidelines-pro-bounds-pointer-arithmetic

do not use pointer arithmetic
}

void log_channel::truncate_storage(storage_id_type storage_id, write_version_type write_version) {
TRACE_START << "storage_id=" << storage_id << ", epoch =" << write_version.epoch_number_ << ", minor =" << write_version.minor_write_version_;

Check warning on line 167 in src/limestone/log_channel.cpp

View workflow job for this annotation

GitHub Actions / Clang-Tidy

cppcoreguidelines-pro-bounds-array-to-pointer-decay

do not implicitly decay an array into a pointer; consider using gsl::array_view or an explicit cast instead

Check warning on line 167 in src/limestone/log_channel.cpp

View workflow job for this annotation

GitHub Actions / Clang-Tidy

cppcoreguidelines-pro-bounds-pointer-arithmetic

do not use pointer arithmetic
try {
log_entry::write_clear_storage(strm_, storage_id, write_version);
write_version_ = write_version;
} catch (...) {
TRACE_ABORT;

Check warning on line 172 in src/limestone/log_channel.cpp

View workflow job for this annotation

GitHub Actions / Clang-Tidy

cppcoreguidelines-pro-bounds-array-to-pointer-decay

do not implicitly decay an array into a pointer; consider using gsl::array_view or an explicit cast instead

Check warning on line 172 in src/limestone/log_channel.cpp

View workflow job for this annotation

GitHub Actions / Clang-Tidy

cppcoreguidelines-pro-bounds-pointer-arithmetic

do not use pointer arithmetic
HANDLE_EXCEPTION_AND_ABORT();
}
TRACE_END;

Check warning on line 175 in src/limestone/log_channel.cpp

View workflow job for this annotation

GitHub Actions / Clang-Tidy

cppcoreguidelines-pro-bounds-array-to-pointer-decay

do not implicitly decay an array into a pointer; consider using gsl::array_view or an explicit cast instead

Check warning on line 175 in src/limestone/log_channel.cpp

View workflow job for this annotation

GitHub Actions / Clang-Tidy

cppcoreguidelines-pro-bounds-pointer-arithmetic

do not use pointer arithmetic
}

boost::filesystem::path log_channel::file_path() const noexcept {
Expand Down
33 changes: 33 additions & 0 deletions src/limestone/logging_helper.h
Original file line number Diff line number Diff line change
Expand Up @@ -112,4 +112,37 @@ constexpr auto location_prefix(const char (&prettyname)[N], const char (&funcnam
// NOLINTNEXTLINE
#define DVLOG_LP(x) _LOCATION_PREFIX_TO_STREAM(DVLOG(x))

// Get the thread name (cached for efficiency)
inline std::string getThreadName() {
thread_local std::string cachedThreadName = [] {
char name[16] = "Unknown";

Check warning on line 118 in src/limestone/logging_helper.h

View workflow job for this annotation

GitHub Actions / Clang-Tidy

cppcoreguidelines-avoid-c-arrays,hicpp-avoid-c-arrays,modernize-avoid-c-arrays

do not declare C-style arrays, use std::array<> instead
if (pthread_getname_np(pthread_self(), name, sizeof(name)) != 0) {

Check warning on line 119 in src/limestone/logging_helper.h

View workflow job for this annotation

GitHub Actions / Clang-Tidy

cppcoreguidelines-pro-bounds-array-to-pointer-decay

do not implicitly decay an array into a pointer; consider using gsl::array_view or an explicit cast instead
return std::string("Unknown");
}
return std::string(name);

Check warning on line 122 in src/limestone/logging_helper.h

View workflow job for this annotation

GitHub Actions / Clang-Tidy

cppcoreguidelines-pro-bounds-array-to-pointer-decay

do not implicitly decay an array into a pointer; consider using gsl::array_view or an explicit cast instead
}();
return cachedThreadName;
}

// Log level for TRACE logging
constexpr int TRACE_LOG_LEVEL = 50;

// Common logging macro for TRACE operations
// NOLINTNEXTLINE
#define TRACE_COMMON(label) \
if (!VLOG_IS_ON(TRACE_LOG_LEVEL)) {} \
else \
VLOG(TRACE_LOG_LEVEL) << "[Thread " << std::this_thread::get_id() \
<< " (" << getThreadName() << ")] LIMESTONE TRACE: " << __func__ \
<< (static_cast<const char*>(label)[0] ? " " : "") \
<< static_cast<const char*>(label) << ": "


// Specific macros for different TRACE use cases
#define TRACE TRACE_COMMON("trace")
#define TRACE_START TRACE_COMMON("start")
#define TRACE_END TRACE_COMMON("end")
#define TRACE_ABORT TRACE_COMMON("abort")


} // namespace

0 comments on commit 6db2f58

Please sign in to comment.