|
|
|
class THandleInfo;
Information about a kernel object.
This type of object is passed to RHandleBase::HandleInfo(THandleInfo *). The function fetches information on the usage of the kernel object associated with that handle and stores the information
in the THandleInfo object.
The class contains four data members and no explicitly defined function members.
Defined in THandleInfo:
iNumOpenInProcessThe number of times that the kernel object is open in the current process.iNumOpenInThreadThe number of times that the kernel object is open in the current thread.iNumProcessesThe number of processes which have a handle on the kernel object.iNumThreadsThe number of threads which have a handle on the kernel object.TInt iNumOpenInProcess;
The number of times that the kernel object is open in the current process.
TInt iNumOpenInThread;
The number of times that the kernel object is open in the current thread.
TInt iNumThreads;
The number of threads which have a handle on the kernel object.