diff options
author | Russell Yanofsky <russ@yanofsky.org> | 2017-12-05 15:57:12 -0500 |
---|---|---|
committer | Russell Yanofsky <russ@yanofsky.org> | 2021-04-23 03:02:50 -0500 |
commit | 10afdf0280fa93bfffb0a7665c60dc155cd84514 (patch) | |
tree | 52512c1d233e30778833b525944ee1935514dc44 /src/ipc/capnp/init.capnp | |
parent | 745c9cebd50fea1664efef571dc1ee1bddc96102 (diff) |
multiprocess: Add Ipc interface implementation
Diffstat (limited to 'src/ipc/capnp/init.capnp')
-rw-r--r-- | src/ipc/capnp/init.capnp | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/ipc/capnp/init.capnp b/src/ipc/capnp/init.capnp new file mode 100644 index 0000000000..be6eecb4b9 --- /dev/null +++ b/src/ipc/capnp/init.capnp @@ -0,0 +1,16 @@ +# Copyright (c) 2021 The Bitcoin Core developers +# Distributed under the MIT software license, see the accompanying +# file COPYING or http://www.opensource.org/licenses/mit-license.php. + +@0xf2c5cfa319406aa6; + +using Cxx = import "/capnp/c++.capnp"; +$Cxx.namespace("ipc::capnp::messages"); + +using Proxy = import "/mp/proxy.capnp"; +$Proxy.include("interfaces/init.h"); +$Proxy.includeTypes("ipc/capnp/init-types.h"); + +interface Init $Proxy.wrap("interfaces::Init") { + construct @0 (threadMap: Proxy.ThreadMap) -> (threadMap :Proxy.ThreadMap); +} |