aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md (renamed from README)1
1 files changed, 0 insertions, 1 deletions
diff --git a/README b/README.md
index 4c48c7f..38d8bd1 100644
--- a/README
+++ b/README.md
@@ -24,7 +24,6 @@ A music streaming server consisting of three programs: the server, the client co
* The station information is held by an array. Each station has a thread that broadcasts to the listeners every half-second (at half the rate per second). During the downtime of this half-second, the station file is read into a buffer and threads are created off of this buffer, waiting to be released. At the top of the second, the station thread then bradcasts a `cond` variable to start all threads that send the station.
* The `users` pointer containing the user data (along with the separate stations pointer) has a mutex `users_mutex` that allows safe-thread write and deletion. This pointer is also dynamic, using realloc when more memory is needed. There are a few memory optimizations implemented (see `init_user(...)`).
-
## Acknowledgments
* [Beej's Guide to Network Programming](https://beej.us/guide/bgnet/)