[NFC][Py Reformat] Added more commits to .git-blame-ignore-revs
[llvm-project.git] / libc / src / __support / RPC / rpc_client.cpp
blob8f71b654627f6121d1f8ac3d077cd501c91831aa
1 //===-- Shared memory RPC client instantiation ------------------*- C++ -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 #include "rpc.h"
11 namespace __llvm_libc {
12 namespace rpc {
14 /// The libc client instance used to communicate with the server.
15 Client client;
17 /// Externally visible symbol to signify the usage of an RPC client to
18 /// whomever needs to run the server.
19 extern "C" [[gnu::visibility("protected")]] const bool __llvm_libc_rpc = false;
21 } // namespace rpc
22 } // namespace __llvm_libc