Skip to content

Commit 4db8640

Browse files
committed
Add Linux futex based Go channel implementation
1 parent ca042ce commit 4db8640

File tree

3 files changed

+490
-1
lines changed

3 files changed

+490
-1
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@
1010
- [mbus](mbus/): A concurrent message bus.
1111
- [spmc](spmc/): A concurrent single-producer/multiple-consumer queue.
1212
- [map-reduce](map-reduce/): word counting using MapReduce.
13-
- [mpmc](mpmc/): A multiple-producer/multiple-consumer queue.
13+
- [mpmc](mpmc/): A multiple-producer/multiple-consumer (MPMC) queue.
14+
- [channel](channel/): A Linux futex based Go channel implementation.
1415

1516
## License
1617

channel/Makefile

+5
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)