From e586e8cf7674eaa6264dea4bc544fe1256437cf3 Mon Sep 17 00:00:00 2001 From: Johan Date: Sat, 17 Jan 2015 12:09:52 +0000 Subject: [PATCH] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d9c061e..11e55a5 100644 --- a/README.md +++ b/README.md @@ -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