We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9a042a6 commit 155098aCopy full SHA for 155098a
README.md
@@ -10,6 +10,7 @@
10
- [mbus](mbus/): A concurrent message bus.
11
- [spmc](spmc/): A concurrent single-producer/multiple-consumer queue.
12
- [map-reduce](map-reduce/): word counting using MapReduce.
13
+- [mpmc](mpmc/): A multiple-producer/multiple-consumer queue.
14
15
## License
16
mpmc/Makefile
@@ -0,0 +1,8 @@
1
+all:
2
+ $(CC) -Wall -std=c11 -o mpmc mpmc.c -lpthread
3
+
4
+indent:
5
+ clang-format -i mpmc.c
6
7
+clean:
8
+ rm -f mpmc
0 commit comments