Skip to content

Commit 65043de

Browse files
committed
Minor changes.
1 parent dea3323 commit 65043de

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
# cpp-ipc(libipc) - C++ IPC Library
22

3-
[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/mutouyun/cpp-ipc/blob/master/LICENSE)
3+
[![MIT licensed](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/mutouyun/cpp-ipc/blob/master/LICENSE)
44
[![Build Status](https://github.com/mutouyun/cpp-ipc/actions/workflows/c-cpp.yml/badge.svg)](https://github.com/mutouyun/cpp-ipc/actions)
55
[![Build status](https://ci.appveyor.com/api/projects/status/github/mutouyun/cpp-ipc?branch=master&svg=true)](https://ci.appveyor.com/project/mutouyun/cpp-ipc)
66
[![Vcpkg package](https://img.shields.io/badge/Vcpkg-package-blueviolet)](https://github.com/microsoft/vcpkg/tree/master/ports/cpp-ipc)
77

8-
## A high-performance inter-process communication using shared memory on Linux/Windows.
8+
## A high-performance inter-process communication library using shared memory on Linux/Windows.
99

1010
* Compilers with C++17 support are recommended (msvc-2017/gcc-7/clang-4)
1111
* No other dependencies except STL.
1212
* Only lock-free or lightweight spin-lock is used.
1313
* Circular array is used as the underline data structure.
14-
* `ipc::route` supports single read and multiple write. `ipc::channel` supports multiple read and write. (**Note: currently, a channel supports up to 32 receivers, but there is no such a limit for sender.**)
14+
* `ipc::route` supports single read and multiple write. `ipc::channel` supports multiple read and write. (**Note: currently, a channel supports up to 32 receivers, but there is no such a limit for the sender.**)
1515
* Broadcasting is used by default, but user can choose any read/ write combinations.
1616
* No long time blind wait. (Semaphore will be used after a certain number of retries.)
1717
* [Vcpkg](https://github.com/microsoft/vcpkg/blob/master/README.md) way of installation is supported. E.g. `vcpkg install cpp-ipc`
@@ -30,7 +30,7 @@ See: [Uncyclo](https://github.com/mutouyun/cpp-ipc/wiki)
3030
OS | Windows 7 Ultimate x64
3131
Compiler | MSVC 2017 15.9.4
3232

33-
Unit & benchmark tests: [test](test)
33+
Unit & benchmark tests: [test](test)
3434
Performance data: [performance.xlsx](performance.xlsx)
3535

3636
## Reference
@@ -69,7 +69,7 @@ Performance data: [performance.xlsx](performance.xlsx)
6969
| 操作系统 | Windows 7 Ultimate x64 |
7070
| 编译器 | MSVC 2017 15.9.4 |
7171

72-
单元测试和Benchmark测试: [test](test)
72+
单元测试和Benchmark测试: [test](test)
7373
性能数据: [performance.xlsx](performance.xlsx)
7474

7575
## 参考

0 commit comments

Comments
 (0)