mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Rename setCurrentThreadName to SetCurrentThreadName
This commit is contained in:
parent
78f068d7ea
commit
06663c478d
1 changed files with 4 additions and 0 deletions
|
@ -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:
|
||||
|
|
Loading…
Add table
Reference in a new issue