I\'m trying to use threads on a Windows C program, compiled on an Eclipse environment and Mingw.
I\'ve also put -lpthread and -pthread on the compilation command, and in
Solved!
AFAIK there is no portable pthread library for Windows under Mingw.
I solved my problem using CreateThread(), and let Mingw resolves it using Windows native threads.