0
pthread library and more?
I have been coding c++ for around a year and a half now, and just got done with the c++ course, but I would like to learn more about threads(mostly inter thread communication), processes, resource management(RAII and so on) and c++ implementation of these subjects, is there a way/app like sololearn that can help my understanding of these subjects?
1 Respuesta
- 1
I don't know if SoloLearn has anything helpful about C++ threads, but you can search for the <thread> header or std::thread.
pthread is for C and isn't good enough for C++.
Also, I would recommend learning about the 'volatile' keyword.
I don't know if there is any C++ process class...