As I wrote in the title, I would like to know if c++ stantard threads are managed in user or kernel space.
Thank you.
|
As I wrote in the title, I would like to know if c++ stantard threads are managed in user or kernel space. Thank you. |
|||
|
As happens almost always, the standard doesn't mandate any particular implementation, it just requires that the exhibited behavior conforms to its rules. Thus, the particular implementation is free to choose; on the other hand, probably many implementations will be based on boost.thread (on which the This library uses pthreads on POSIX and Windows threads on Win32. Win32 threads are definitely kernel threads, but pthreads on their own are just yet another interface, which could be implemented both in user space and in kernel space (although almost any recent UNIX kernel provides facilities to implement them in kernel space). So: |
||||
|
|
The interface is designed around pthreads, but it is up to the implementer of the libc++ to decide what to use. |
|||||
|
|
std::threadrunning in user space even if the heavy lifting is done in kernel space. – MSalters Apr 30 '12 at 20:46