Rename setCurrentThreadName to SetCurrentThreadName

This commit is contained in:
Henrik Rydgård 2020-12-01 00:46:26 +01:00
parent 78f068d7ea
commit 06663c478d

View file

@ -2,6 +2,10 @@
#include <mutex>
// I plan to experiment with these to see if this approach can also work in C++.
// The major advantage compared to a normal mutex is that we use the type system
// to enforce that the resource is only accessed when the mutex is locked.
template<class T>
class RustMutexProxy {
public: