cpp-ipc icon indicating copy to clipboard operation
cpp-ipc copied to clipboard

C++ IPC Library: A high-performance inter-process communication using shared memory on Linux/Windows.

Results 43 cpp-ipc issues
Sort by recently updated
recently updated
newest added

1. 启动进程 A 调用 do_send() 2. 启动进程 B 调用 do_recv(),此时打印的耗时大概是30~50us 3. 杀死进程B 4. 再启动进程B,此时打印的耗时大概是 2308us 左右 ```cpp constexpr auto payload_size = 64 * 1024; void do_send() { std::unique_ptr sender =...

bug

What does param1 count is for ?

有支持mac的计划吗? 或者您能告诉我一些支持mac的思路吗?

![image](https://user-images.githubusercontent.com/19235855/142795332-92769b86-3d20-4be9-9f4c-359d3e11a213.png) ![image](https://user-images.githubusercontent.com/19235855/142795416-a5214e9a-59fc-4e57-a7dd-1bcdf72dd725.png)

bug

``` #include #include #include #include #include #include #include "libipc/ipc.h" #include namespace { std::atomic is_quit__ {false}; ipc::channel *ipc__ = nullptr; struct data { long time; double msg; }; inline long getNano()...

Hi, While I use this demo code, I found if the received crashed and reopen it again, I usually get this error and can not get any message anymore, I...

bug

hello, I tried to send std::vector and std::array with ipc and it doesn't work. Can I get some help? Maybe there is a way to send vector/array?