diff options
author | Ryan Ofsky <ryan@ofsky.org> | 2024-10-16 12:10:54 -0400 |
---|---|---|
committer | Ryan Ofsky <ryan@ofsky.org> | 2024-10-16 12:13:27 -0400 |
commit | 90b405516f7f3be522ced3e0c4d23b3892df0661 (patch) | |
tree | 94875db2ac5e3b1a685a67e71221f1470025720a /src | |
parent | 48cf3da636089873ba7280e0d5b22eb81811d194 (diff) |
Update libmultiprocess library
Add recent changes and fixes for shutdown bugs.
https://github.com/chaincodelabs/libmultiprocess/pull/111: doc: Add internal design section
https://github.com/chaincodelabs/libmultiprocess/pull/113: Add missing include to util.h
https://github.com/chaincodelabs/libmultiprocess/pull/116: shutdown bugfix: destroy RPC system before running cleanup callbacks
https://github.com/chaincodelabs/libmultiprocess/pull/118: shutdown bugfix: Prevent segfault in server if connection is broken during long function call
https://github.com/chaincodelabs/libmultiprocess/pull/119: cmake: avoid libatomic not found error on debian
Diffstat (limited to 'src')
-rw-r--r-- | src/test/ipc_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/ipc_test.cpp b/src/test/ipc_test.cpp index 91eba9214f..af37434980 100644 --- a/src/test/ipc_test.cpp +++ b/src/test/ipc_test.cpp @@ -62,7 +62,7 @@ void IpcPipeTest() auto connection_client = std::make_unique<mp::Connection>(loop, kj::mv(pipe.ends[0])); auto foo_client = std::make_unique<mp::ProxyClient<gen::FooInterface>>( - connection_client->m_rpc_system.bootstrap(mp::ServerVatId().vat_id).castAs<gen::FooInterface>(), + connection_client->m_rpc_system->bootstrap(mp::ServerVatId().vat_id).castAs<gen::FooInterface>(), connection_client.get(), /* destroy_connection= */ false); foo_promise.set_value(std::move(foo_client)); disconnect_client = [&] { loop.sync([&] { connection_client.reset(); }); }; |