Sha256: e7aadfa15e5889b2ffbb029928be68b611f3ea2d7b68cf0b53dc117ec2858230
Contents?: true
Size: 1019 Bytes
Versions: 15
Compression:
Stored size: 1019 Bytes
Contents
// Copyright 2023 The gRPC Authors // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. #include "src/core/lib/event_engine/thread_local.h" #include <grpc/support/port_platform.h> namespace grpc_event_engine { namespace experimental { namespace { thread_local bool g_thread_local{false}; } // namespace void ThreadLocal::SetIsEventEngineThread(bool is) { g_thread_local = is; } bool ThreadLocal::IsEventEngineThread() { return g_thread_local; } } // namespace experimental } // namespace grpc_event_engine
Version data entries
15 entries across 15 versions & 1 rubygems