Update README.md

This commit is contained in:
Johan 2015-01-17 12:09:52 +00:00
parent a70b712500
commit e586e8cf76

View File

@ -24,12 +24,12 @@ This is an updated and heavily refactored version of my original threadpool. The
The library is not precompiled so you have to compile it with your project. The thread pool
uses POSIX threads so if you compile with **gcc** on Linux you have to use the flag `-pthread` like this:
gcc example.c thpool.c -pthread -o test
gcc example.c thpool.c -pthread -o example
Then run the executable like this:
./test
./example
##Basic usage