Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I’m trying to compile some C11 code using thread.h, but I can’t. I've recompiled GCC (running 4.6.2 now), and I’m trying to compile with gcc -std=c1x file.c -o file. I can do this in g++ (using the thread library, that is) but I can’t in C. Is thread.h not included in the GCC distribution yet?

share|improve this question

4 Answers

up vote 21 down vote accepted

Most of the C standard library, including stdio for example, is not included in the gcc distribution. Instead, gcc depends on whatever runtime library is provided by the operating system.

For most Linux systems (or GNU/Linux if you prefer), the library is GNU's glibc; for other systems it will be something else.

So the real question is probably when glibc, or whichever C library you're using, will support C11's thread library.

(Note that a few parts of the library, those most closely tied to the compiler, are provided by gcc itself. thread probably isn't one of them, but certainly some compiler support is required.)

share|improve this answer
Most Linux systems use glibc, some (like modern Debian and its derivatives) use EGLIBC. A few other system use other alternates. – Dr. Person Person II Apr 3 at 12:59

Further information about this can be found here.

... (Atomics - stdatomic.h - are optional, and will probably need to wait for associated language features to be implemented in GCC 4.8. I'd guess that the optional threading interfaces in threads.h and bounds-checking interfaces in Annex K aren't wanted for glibc for now, although they could potentially go in separate libraries.

My guess is that we won't see this implemented for quite some time, at least not in standard glibc and gcc (sourced post provides some insight). My personal guess is something like one year, it will take probably something like 2 years until it will be stable enough for production use. Thats 2k14 (assert(survival_2012)) :P

share|improve this answer

To quote from the GCC standards page about C11:

GCC has limited incomplete support for parts of this standard

While I only have GCC 4.6.1, I do not have a "thread.h" header file anywhere on my system.

Neither the changes pages for 4.6 nor 4.7 mentions threads.


There are "threads" mentioned in the 4.7 changes page, but nothing that seems to have anything to do with it in a C11 context. Also, nothing about C11 is mentioned in the upcomming 4.8 page.

share|improve this answer
3  
This is not quite true: 4.7 does mention threads. I'm not sure if it did when you posted, but it certainly does now. – Levi Morrison Oct 24 '12 at 23:58

As of the 4.7 series, GCC contains support for threads (just down from c++).

The first 4.7 release happened March 22, 2012. It will be some time before it is widely distributed, but it is available for download now. I have confirmed that thread support is working, but the name of the file is thread, not thread.h.

share|improve this answer
2  
That's the C++11 threading support header file, not the pure C header file. – Joachim Pileborg Oct 25 '12 at 1:34
@JoachimPileborg That may be true; C++ internals are not my strong point. Suggest an edit if you feel something is in order. – Levi Morrison Oct 25 '12 at 4:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.