Skip to content

Commit 39ee302

Browse files
committed
Add word counting using MapReduce
1 parent 0f61faf commit 39ee302

File tree

3 files changed

+796
-1
lines changed

3 files changed

+796
-1
lines changed

README.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
- [httpd](httpd/): A multi-threaded web server.
99
- [ringbuffer](ringbuffer/): A lock-less ring buffer.
1010
- [mbus](mbus/): A concurrent message bus.
11-
- [spmc](spmc/): A concurrent single-producer/multiple-consumer queue
11+
- [spmc](spmc/): A concurrent single-producer/multiple-consumer queue.
12+
- [map-reduce](map-reduce/): word counting using MapReduce.
1213

1314
## License
1415

map-reduce/Makefile

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
all:
2+
$(CC) -Wall -o word-count word-count.c -lpthread
3+
4+
clean:
5+
rm -f word-count
6+
7+
indent:
8+
clang-format -i word-count.c

0 commit comments

Comments
 (0)