KAutoObject

KAutoObject

KAutoObject represents a reference counted object that destroys itself when there are no more references to it.

Size : 0x8 bytes

OffsetTypeDescription
0x0u32Pointer to vtable
0x4u32Reference count

Class Definition #

   class KAutoObject {
    public:
       u32 m_referenceCount;       // 0x4
    protected:
       virtual ~KAutoObject() { }
   };

Category:Kernel auto objects