mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
22 lines
824 B
C
22 lines
824 B
C
|
// Copyright 2018 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.
|
||
|
|
||
|
#ifndef BASE_TEST_CLANG_COVERAGE_H_
|
||
|
#define BASE_TEST_CLANG_COVERAGE_H_
|
||
|
|
||
|
namespace base {
|
||
|
|
||
|
// Write out the accumulated code coverage profile to the configured file.
|
||
|
// This is used internally by e.g. base::Process and FATAL logging, to cause
|
||
|
// coverage information to be stored even when performing an "immediate" exit
|
||
|
// (or triggering a debug crash), where the automatic at-exit writer will not
|
||
|
// be invoked.
|
||
|
// This call is thread-safe, and will write profiling data at-most-once.
|
||
|
// Call-sites invoke this API only if the CLANG_COVERAGE macro is defined.
|
||
|
void WriteClangCoverageProfile();
|
||
|
|
||
|
} // namespace base
|
||
|
|
||
|
#endif // BASE_TEST_CLANG_COVERAGE_H_
|