36:24 Only note is that when putting code into a slide, make some spaces and even use a smaller font to be able to use spaces. This is a good talk about threading in C++, would recommend. I like that he speaks about use cases and a bit theory and not just pure API calls.
@ibrahimakeita50352 жыл бұрын
Really great talk... And thank you so much. My question: because the busy wait scenario is bad, is std::barrier also optimal as std::condition_variable, when we call std::barrier::wait or std::barrier::arrive_and_wait? is std::barrier don't waste power as std::condition_variable?
@abdulshabazz85972 жыл бұрын
Multithreading is so ugly to deploy and manage in C++ People don't write fast or lean code anymore, they use compiler flags to compile the code to be memory lean or fast; there needs to be a way to efficiently manage these requirements in the compiler.