We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ca042ce commit 4db8640Copy full SHA for 4db8640
README.md
@@ -10,7 +10,8 @@
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.
+- [mpmc](mpmc/): A multiple-producer/multiple-consumer (MPMC) queue.
14
+- [channel](channel/): A Linux futex based Go channel implementation.
15
16
## License
17
channel/Makefile
@@ -0,0 +1,5 @@
1
+all:
2
+ $(CC) -Wall -Wextra -o channel channel.c -lpthread
3
+
4
+clean:
5
+ rm -f channel
0 commit comments