Files
rk35xx-android14/external/cronet/base/task/sequence_manager/associated_thread_id.cc
T
hmz007 36ed224bac Rockchip Anroid14_SDK 20240628-rkr5 (2556df1a)
Signed-off-by: hmz007 <hmz007@gmail.com>
Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
2024-10-29 18:12:02 +08:00

36 lines
1.1 KiB
C++

// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "base/task/sequence_manager/associated_thread_id.h"
#include "base/check.h"
#include "base/dcheck_is_on.h"
namespace base {
namespace sequence_manager {
namespace internal {
AssociatedThreadId::AssociatedThreadId() = default;
AssociatedThreadId::~AssociatedThreadId() = default;
void AssociatedThreadId::BindToCurrentThread() {
#if DCHECK_IS_ON()
const auto prev_thread_ref = thread_ref_.load(std::memory_order_relaxed);
DCHECK(prev_thread_ref.is_null() ||
prev_thread_ref == PlatformThread::CurrentRef());
#endif
thread_ref_.store(PlatformThread::CurrentRef(), std::memory_order_release);
// Rebind the thread and sequence checkers to the current thread/sequence.
DETACH_FROM_THREAD(thread_checker);
DCHECK_CALLED_ON_VALID_THREAD(thread_checker);
DETACH_FROM_SEQUENCE(sequence_checker);
DCHECK_CALLED_ON_VALID_SEQUENCE(sequence_checker);
}
} // namespace internal
} // namespace sequence_manager
} // namespace base