MCPcopy Create free account
hub / github.com/Pagghiu/SaneCppLibraries / Mutex

Function Mutex

Libraries/Threading/Threading.h:42–42  ·  view source on GitHub ↗

Underlying OS primitives can't be copied or moved

Source from the content-addressed store, hash-verified

40
41 // Underlying OS primitives can't be copied or moved
42 Mutex(const Mutex&) = delete;
43 Mutex(Mutex&&) = delete;
44 Mutex& operator=(const Mutex&) = delete;
45 Mutex& operator=(Mutex&&) = delete;

Callers 1

Threading.hFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected