-
Notifications
You must be signed in to change notification settings - Fork 1
/
README
25 lines (16 loc) · 1005 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
This directory contains the following files:
README: this file
Makefile: to compile example_thread, server, and client, just
type "make" or "make all". Make sure you read
this Makefile to understand how the various libraries
get linked into the various executables.
common.[c|h]: some code that is useful to both the server and client
server.c: the source code for the single-threaded server
client.c: the source code for a single-threaded test client
example_thread.c: an example multithreaded program that uses pthreads
threadpool.[c|h]: the code you will modify to implement a thread pool
threadpool_test.c: some sample code that invokes a threadpool
SocketLibarary: a directory containing a library that shields you from
needing to understand how to create and manipulate
network sockets. Feel free to read the code in here
if you're curious, though.