blob: 8874edbbd5c6d460fcba559b563d02ecabdba5b0 [file] [log] [blame]
Austin Schuh044e18b2015-10-21 20:17:09 -07001#include "aos/common/logging/context.h"
2
3#include <string.h>
4
5namespace aos {
6namespace logging {
7namespace internal {
8
9::std::atomic<LogImplementation *> global_top_implementation(NULL);
10
11Context::Context()
12 : implementation(global_top_implementation.load()),
13 sequence(0) {
14 cork_data.Reset();
15}
16
17} // namespace internal
18} // namespace logging
19} // namespace aos