mirror of
https://github.com/alliedmodders/hl2sdk.git
synced 2025-09-19 12:06:07 +08:00
Update CSchemaSystemTypeScope & CThreadSpinMutex
This commit is contained in:
@ -94,9 +94,7 @@ public:
|
||||
CSchemaPtrMap<int, CSchemaType_Atomic*> m_Atomics;
|
||||
CSchemaPtrMap<AtomicTypeInfo_T_t, CSchemaType_Atomic_T*> m_AtomicsT;
|
||||
CSchemaPtrMap<AtomicTypeInfo_T_t, CSchemaType_Atomic_CollectionOfT*> m_AtomicsCollectionOfT;
|
||||
CSchemaPtrMap<AtomicTypeInfo_TF_t, CSchemaType_Atomic_TF*> m_AtomicsTF;
|
||||
CSchemaPtrMap<AtomicTypeInfo_TT_t, CSchemaType_Atomic_TT*> m_AtomicsTT;
|
||||
CSchemaPtrMap<AtomicTypeInfo_TTF_t, CSchemaType_Atomic_TTF*> m_AtomicsTTF;
|
||||
CSchemaPtrMap<AtomicTypeInfo_I_t, CSchemaType_Atomic_I*> m_AtomicsI;
|
||||
CSchemaPtrMap<uint, CSchemaType_DeclaredClass*> m_DeclaredClasses;
|
||||
CSchemaPtrMap<uint, CSchemaType_DeclaredEnum*> m_DeclaredEnums;
|
||||
|
@ -711,8 +711,7 @@ class CThreadSpinMutex
|
||||
public:
|
||||
CThreadSpinMutex( const char* pDebugName = NULL )
|
||||
: m_ownerID( 0 ),
|
||||
m_depth( 0 ),
|
||||
m_pDebugName( NULL/*pDebugName*/ )
|
||||
m_depth( 0 )
|
||||
{
|
||||
}
|
||||
|
||||
@ -814,7 +813,6 @@ public:
|
||||
private:
|
||||
volatile ThreadId_t m_ownerID;
|
||||
int m_depth;
|
||||
const char* m_pDebugName;
|
||||
};
|
||||
|
||||
class ALIGN128 CAlignedThreadFastMutex : public CThreadSpinMutex
|
||||
|
Reference in New Issue
Block a user