Update README.md

This commit is contained in:
Alex Kotov 2020-12-16 11:59:18 +05:00 committed by GitHub
parent 42c7c3c1e6
commit cf314173fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -15,6 +15,7 @@ Table of contents
* [Links](#links)
* [Similar implementations](#similar-implementations)
* [Implementation theory](#implementation-theory)
* [Shared memory and other IPC theory](#shared-memory-and-other-ipc-theory)
* [Cost theory](#cost-theory)
@ -33,6 +34,10 @@ Links
* [Building a shared memory IPC implementation Part I](https://coherent-labs.com/posts/building-a-shared-memory-ipc-implementation-part-i/)
* [Single-Producer/Single-Consumer Queue](https://software.intel.com/content/www/us/en/develop/articles/single-producer-single-consumer-queue.html)
### Shared memory and other IPC theory
* [Разделяемая память. Семафоры.](https://youtu.be/g_qco-EJqDM)
### Cost theory
* [Which takes longer time? Switching between the user & kernel modes or switching between two processes?](https://stackoverflow.com/a/14205346)