Esecuzione di uscita annullata

Dati di contesto per un'uscita causata da un annullamento dall'host.

Sintassi

//
// Context data for an exit caused by a cancellation from the host (WHvRunVpExitReasonCanceled)
//
typedef enum WHV_RUN_VP_CANCEL_REASON
{
    WHvRunVpCancelReasonUser = 0 // Execution canceled by WHvCancelRunVirtualProcessor
} WHV_RUN_VP_CANCEL_REASON;

//
// Alias for non-standard capitalization found in earlier versions of the header
//
#define WhvRunVpCancelReasonUser WHvRunVpCancelReasonUser

typedef struct WHV_RUN_VP_CANCELED_CONTEXT
{
    WHV_RUN_VP_CANCEL_REASON CancelReason;
} WHV_RUN_VP_CANCELED_CONTEXT;

Remarks

Nella struttura vengono fornite WHV_RUN_VP_CANCELED_CONTEXT informazioni su un'uscita causata dal sistema host.

Si noti che il valore numerico di WHvRunVpExitReasonCanceled è diverso tra x64 e Arm64.

Vedere anche