#include "rtsan/rtsan_context.h"
#include "rtsan/rtsan.h"
#include "sanitizer_common/sanitizer_allocator_internal.h"
#include <new>
#include <pthread.h>
usingnamespace__sanitizer;
usingnamespace__rtsan;
static pthread_key_t context_key;
static pthread_once_t key_once = …;
static void InternalFreeWrapper(void *ptr) { … }
static __rtsan::Context &GetContextForThisThreadImpl() { … }
__rtsan::Context::Context() = default;
void __rtsan::Context::RealtimePush() { … }
void __rtsan::Context::RealtimePop() { … }
void __rtsan::Context::BypassPush() { … }
void __rtsan::Context::BypassPop() { … }
bool __rtsan::Context::InRealtimeContext() const { … }
bool __rtsan::Context::IsBypassed() const { … }
Context &__rtsan::GetContextForThisThread() { … }