KD_IOCTL_KERNEL_CONTINUE (Compact 2013)
10/16/2014
This I/O control message notifies the BSP that the kernel debugger is about to wake the device from a previous KD_IOCTL_KERNEL_HALT. The kernel debugger sends this message with OEMKDIoctl.
Syntax
BOOL OEMKDIoControl(
DWORD dwIoControlCode, // use KD_IOCTL_KERNEL_CONTINUE
LPVOID lpInBuffer, // pointer to input buffer
DWORD nInBufferSize // input buffer size
);
Parameters
- dwIoControlCode
[in] Control code for the operation. Use KD_IOCTL_KERNEL_CONTINUE for this operation.
- lpInBuffer
[in] Set to NULL.
- nInBufferSize
[in] Set to zero.
Return Values
TRUE if successful; otherwise, FALSE.
Remarks
This I/O control must be implemented to support the Platform Builder kernel debugger on target platforms that contain independent resources that must be deactivated for a CPU halt. These include any parallel processing elements such as math coprocessors, modems, audio processors, and any similar elements.
The implementation of this I/O control must restore these elements from their halted state before returning.
Requirements
Header |
pkfuncs.h |