2017-12-21 00:45:38 +01:00
|
|
|
/*
|
2021-05-16 20:51:16 +02:00
|
|
|
* Copyright (C) 2018-2021 Intel Corporation
|
2017-12-21 00:45:38 +01:00
|
|
|
*
|
2018-09-18 09:11:08 +02:00
|
|
|
* SPDX-License-Identifier: MIT
|
2017-12-21 00:45:38 +01:00
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#pragma once
|
2019-02-27 11:39:32 +01:00
|
|
|
|
2017-12-21 00:45:38 +01:00
|
|
|
#include <cstdint>
|
|
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
namespace NEO {
|
2018-02-02 10:33:31 +01:00
|
|
|
typedef uint64_t FlushStamp;
|
2017-12-21 00:45:38 +01:00
|
|
|
struct CompletionStamp {
|
|
|
|
|
uint32_t taskCount;
|
|
|
|
|
uint32_t taskLevel;
|
|
|
|
|
FlushStamp flushStamp;
|
2020-01-23 11:57:37 +01:00
|
|
|
|
2021-10-22 16:20:36 +00:00
|
|
|
static constexpr uint32_t notReady = 0xFFFFFFF0;
|
2017-12-21 00:45:38 +01:00
|
|
|
};
|
2020-01-23 11:57:37 +01:00
|
|
|
|
2019-03-26 11:59:46 +01:00
|
|
|
} // namespace NEO
|