Tuesday, May 12, 2020

Digest for comp.lang.c++@googlegroups.com - 23 updates in 5 topics

Lynn McGuire <lynnmcguire5@gmail.com>: May 12 06:14PM -0500

"C++20: The Advantages of Modules" by Rainer Grimm
http://www.modernescpp.com/index.php/cpp20-modules
 
"Modules are one of the four big features of C++20: concepts, ranges,
coroutines, and modules. Modules promise a lot: compile-time
improvement, isolation of macros, the abolition of header files, and
ugly workarounds."
 
Lynn
Bonita Montero <Bonita.Montero@gmail.com>: May 12 10:49PM +0200

Here's again the mutex with adjustable spin-count an the benchmark:
 
C++:
 
#if defined(_MSC_VER)
#define _CRT_SECURE_NO_WARNINGS
#include <Windows.h>
#elif defined(__unix__)
#include <semaphore.h>

No comments: