Files
compute-runtime/shared/source/debugger/definitions/StateSaveAreaHeaderWrapper.h
Neil R. Spruit 934b24cbe1 refactor: Simplify the include of StateSaveAreaHeader
Related-To: NEO-17009

Signed-off-by: Neil R. Spruit <neil.r.spruit@intel.com>
2025-12-12 00:22:05 +01:00

30 lines
548 B
C++

/*
* Copyright (C) 2025 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include "common/StateSaveAreaHeader.h"
#include <cstdint>
namespace NEO {
// NOLINTBEGIN
struct StateSaveAreaHeader {
struct SIP::StateSaveArea versionHeader;
union {
struct SIP::intelgt_state_save_area regHeader;
struct SIP::intelgt_state_save_area_V3 regHeaderV3;
uint64_t totalWmtpDataSize;
};
};
union SipCommandRegisterValues {
SIP::sip_command sip_commandValues;
};
// NOLINTEND
} // namespace NEO