Questions
Linux
Laravel
Mysql
Ubuntu
Git
Menu
HTML
CSS
JAVASCRIPT
SQL
PYTHON
PHP
BOOTSTRAP
JAVA
JQUERY
R
React
Kotlin
×
Linux
Laravel
Mysql
Ubuntu
Git
New posts in stdmutex
Release and Acquire with std::mutex
Feb 19, 2023
c++
c++11
memory-barriers
stdmutex
Why the constructor of std::mutex in C++ does not throw?
Sep 28, 2022
c++11
pthreads
stdmutex
std::mutex in shared memory not working
Sep 05, 2022
c++
multithreading
mutex
shared-memory
stdmutex
Why is sizeof std::mutex == 40 when cache line size is often 64 bytes
Oct 26, 2022
c++
optimization
x86
false-sharing
stdmutex
Using std::mutex as member variable in a class
Nov 09, 2018
c++11
mutex
stdmutex
Different behavior when `std::lock_guard<std::mutex>` object has no name
Aug 31, 2022
c++
c++11
stdthread
stdmutex
Is my wait - notify mechanism using std::mutex correct?
Feb 12, 2022
c++
multithreading
c++11
stdmutex
Why is std::mutex so much worse than std::shared_mutex in Visual C++?
Jan 24, 2022
c++
visual-c++
stdmutex
Why do functions using std::mutex make a null check of the address of pthread_key_create?
Jun 07, 2021
c++
gcc
pthreads
clang
stdmutex
How is std::atomic_ref implemented for non-atomic types?
Jan 30, 2022
c++
c++20
stdatomic
stdmutex
Is a copy-on-return operation executed prior or after lock_guard destructor? [duplicate]
Mar 24, 2022
c++
thread-safety
destructor
race-condition
stdmutex
Why is std::mutex a standard-layout class?
Aug 25, 2022
c++
language-lawyer
stdmutex
Is there any reason C++ 11+ std::mutex should be declared as a global variable instead of passed into a std::thread as a function parameter?
Aug 25, 2022
c++
multithreading
mutex
stdthread
stdmutex
std::unique_lock<std::mutex> or std::lock_guard<std::mutex>?
Aug 13, 2022
c++
multithreading
c++11
mutual-exclusion
stdmutex