README update to add throttle.c discussion

This commit is contained in:
Remzi Arpaci-Dusseau
2019-05-16 16:15:24 -05:00
parent f5013449e1
commit e49a70c124

View File

@@ -63,3 +63,11 @@ Run `make` to build all of them with the highly primitive `Makefile`.
Code in `zemaphore.c`. We bet you can figure out the rest. This is just
a small test of the Zemaphore with the fork/join problem.
# Throttle
Bonus code that shows how semaphores can be used to throttle how
many different threads run through a certain bit of code at a time.
Code in `throttle.c`.