On 3/19/2014 23:49, Torbjörn Rathsman wrote:
> The goal of C++ is that features not used should be possible to disable. If
> the C++ thread library is not used I would like an option -no-std-threads
> or something.
>

You misunderstand, the C++ thread implementation does not allow that.
libgcc itself depends on winpthreads for initialization if you want
C++11 thread support.

If you don't need C++11 thread support, don't use Posix thread version.
Use the regular win32 thread version.

> Also, I wonder if the libwinpthread will conflict with native Win32 threads.

No it will not, as long as you do not mix thread objects like mutex and
semaphores meant for the other.


Attachment: signature.asc
Description: OpenPGP digital signature

------------------------------------------------------------------------------
Learn Graph Databases - Download FREE O'Reilly Book
"Graph Databases" is the definitive new guide to graph databases and their
applications. Written by three acclaimed leaders in the field,
this first edition is now available. Download your free book today!
http://p.sf.net/sfu/13534_NeoTech
_______________________________________________
Mingw-w64-public mailing list
Mingw-w64-public@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/mingw-w64-public

Reply via email to