Sha256: 44e2f8f8cd1c366770b6542f2dac76e9cfaba099cb26906b7887b15f318ceffa
Contents?: true
Size: 1.07 KB
Versions: 18
Compression:
Stored size: 1.07 KB
Contents
/* * * Copyright 2015 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 <grpc/support/port_platform.h> #include <grpc/slice.h> #include "src/core/lib/iomgr/exec_ctx.h" #include "src/core/lib/slice/slice_refcount.h" /* Public API */ grpc_slice grpc_slice_ref(grpc_slice slice) { return grpc_slice_ref_internal(slice); } /* Public API */ void grpc_slice_unref(grpc_slice slice) { if (grpc_core::ExecCtx::Get() == nullptr) { grpc_core::ExecCtx exec_ctx; grpc_slice_unref_internal(slice); } else { grpc_slice_unref_internal(slice); } }
Version data entries
18 entries across 18 versions & 2 rubygems