mirror of
https://github.com/mutouyun/cpp-ipc.git
synced 2025-12-06 16:56:45 +08:00
- is_multi_producer:sender无限制;否则仅允许一个 - is_multi_consumer:receiver个数上限依赖is_broadcast指定;否则仅允许一个 - is_broadcast:receiver个数上限为32(uint_t<32>位数);否则无限制(uint_t<32>大小) 行为变更: 1. 在连接时根据模式检查sender/receiver是否超出上限,超出则返回false 2. 在send时确认是否允许发送(对receiver模式来说,send之前不会尝试确认sender个数) 3. 修正若干bug |
||
|---|---|---|
| .. | ||
| CMakeLists.txt | ||
| test_ipc.cpp | ||
| test_mem.cpp | ||
| test_queue.cpp | ||
| test_shm.cpp | ||
| test_thread_utility.cpp | ||
| test_waiter.cpp | ||
| test.h | ||
| thread_pool.h | ||