compute-runtime/shared/source/memory_manager/eviction_status.h

21 lines
261 B
C++

/*
* Copyright (C) 2019-2020 Intel Corporation
*
* SPDX-License-Identifier: MIT
*
*/
#pragma once
#include <cstdint>
namespace NEO {
enum class EvictionStatus : uint32_t {
SUCCESS = 0,
FAILED,
NOT_APPLIED,
UNKNOWN
};
} // namespace NEO