├── .github └── workflows │ └── ccpp.yml ├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md └── src ├── pipe_lat.c ├── pipe_thr.c ├── tcp_lat.c ├── tcp_local_lat.c ├── tcp_remote_lat.c ├── tcp_thr.c ├── udp_lat.c ├── unix_lat.c └── unix_thr.c /.github/workflows/ccpp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigtorp/ipc-bench/HEAD/.github/workflows/ccpp.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .cache/ 3 | build/ -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigtorp/ipc-bench/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigtorp/ipc-bench/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigtorp/ipc-bench/HEAD/README.md -------------------------------------------------------------------------------- /src/pipe_lat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigtorp/ipc-bench/HEAD/src/pipe_lat.c -------------------------------------------------------------------------------- /src/pipe_thr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigtorp/ipc-bench/HEAD/src/pipe_thr.c -------------------------------------------------------------------------------- /src/tcp_lat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigtorp/ipc-bench/HEAD/src/tcp_lat.c -------------------------------------------------------------------------------- /src/tcp_local_lat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigtorp/ipc-bench/HEAD/src/tcp_local_lat.c -------------------------------------------------------------------------------- /src/tcp_remote_lat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigtorp/ipc-bench/HEAD/src/tcp_remote_lat.c -------------------------------------------------------------------------------- /src/tcp_thr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigtorp/ipc-bench/HEAD/src/tcp_thr.c -------------------------------------------------------------------------------- /src/udp_lat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigtorp/ipc-bench/HEAD/src/udp_lat.c -------------------------------------------------------------------------------- /src/unix_lat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigtorp/ipc-bench/HEAD/src/unix_lat.c -------------------------------------------------------------------------------- /src/unix_thr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rigtorp/ipc-bench/HEAD/src/unix_thr.c --------------------------------------------------------------------------------