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

Current implementation may not compile due to shm_data being non-copyable. The only proper std::pair constructor is number 9 https://en.cppreference.com/w/cpp/utility/pair/pair

有两个问题想请教下各位: 1) 有没有一种模式适合client和server端的交互呢? 例如,client发送一个"hello" , 可以返回一个hello。也就是返回值是经过server端处理后的值。 从demo的例子看,client端的send和recv是两个独立channel, 那发送的消息和接受到的是不是没办法一一对应呢? ```c++ auto& msg = sent("hello"); std::count

测试系统:Ubuntu 20.04 测试代码:demo/msg_que/main.cpp(修改msg_que_t 为std::shared_ptr) 具体代码: ``` #include #include #include #include #include #include #include #include "libipc/ipc.h" #include "capo/random.hpp" namespace { constexpr char const name__ [] = "ipc-msg-que"; constexpr char const mode_s__[]...