GetExtendInfo
Function Usage
Obtains the extended information about the kernel.
Prototype
1 | const KernelExtendInfo *GetExtendInfo() const |
Parameters
None
Returns
Extended information about the kernel.
For details about the definition of the KernelExtendInfo type, see the KernelExtendInfo class in Internal Associated APIs.
Constraints
None
Examples
1 2 3 | // Assume that KernelContext *context already exists. auto extend_context = reinterpret_cast<ExtendedKernelContext *>(context); auto extend_info = extend_context->GetExtendInfo(); |
Parent topic: ExtendedKernelContext