Giter Club home page Giter Club logo

Comments (7)

lucasart avatar lucasart commented on June 11, 2024 1

According to the C11 standard, the correct solution would be for client code to look like this:

#ifdef __STDC_NO_THREADS__
    #include "c11threads.h"  // Use home-grown substitute
#else
    # include <threads.h>  // Use standard libc header
#endif

No need to change c11threads.h.

from c11threads.

jtsiomb avatar jtsiomb commented on June 11, 2024

Not a bad idea, but is there any libc out there which supports C11 threads to test against?

from c11threads.

stv0g avatar stv0g commented on June 11, 2024

http://stackoverflow.com/questions/24557728/does-any-c-library-implement-c11-threads-for-gnu-linux

You could try musl.

The latest glibc at least sets __STDC_NO_THREADS__ to 1. Previous versions don't, sigh -.-

from c11threads.

lucasart avatar lucasart commented on June 11, 2024

But if you use musl with c11 threads, why would you include this c11thread.h file ?

from c11threads.

stv0g avatar stv0g commented on June 11, 2024

Thats the point of this issue: Only include c11thread.h in case your libc does not have C11 thread support.

from c11threads.

stv0g avatar stv0g commented on June 11, 2024

You are right.

from c11threads.

gcerretani avatar gcerretani commented on June 11, 2024

The correct way to check for C standard library support for threads at compile time should be

#if defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 201112L) && !defined(__STDC_NO_THREADS__)
#include <threads.h>
#else
#include "c11threads.h"
#endif

A possible solution to automatically use the standard library if available could be to add these lines to c11threads.h, replacing #include "c11threads.h" with the current content of the header.

Note that nowadays all distributions are shipped with a version of glibc supporting threads.

from c11threads.

Related Issues (14)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.