2019-07-12 22:50:14 +08:00
|
|
|
/*
|
2020-02-23 05:21:06 +08:00
|
|
|
* Copyright (C) 2019-2020 Intel Corporation
|
2019-07-12 22:50:14 +08:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: MIT
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#include <cstdint>
|
|
|
|
|
|
|
|
namespace NEO {
|
|
|
|
|
|
|
|
enum class EvictionStatus : uint32_t {
|
|
|
|
SUCCESS = 0,
|
|
|
|
FAILED,
|
|
|
|
NOT_APPLIED,
|
|
|
|
UNKNOWN
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace NEO
|