summaryrefslogtreecommitdiff
path: root/chromium/base/tracing/tracing_tls.cc
blob: 5680a5fc1e89ddb46e461c62e37bc97cd7365127 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright 2021 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "base/tracing/tracing_tls.h"

#include "base/no_destructor.h"

namespace base {
namespace tracing {

// static
ThreadLocalBoolean* GetThreadIsInTraceEventTLS() {
  static base::NoDestructor<base::ThreadLocalBoolean> thread_is_in_trace_event;
  return thread_is_in_trace_event.get();
}

}  // namespace tracing
}  // namespace base