aboutsummaryrefslogtreecommitdiff
path: root/profiling/client/include/CounterValue.hpp
blob: 79de33b9b9113511c01f4f00213eb913f5feac28 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//
// Copyright © 2022 Arm Ltd. All rights reserved.
// SPDX-License-Identifier: MIT
//

#pragma once

namespace arm
{

namespace pipe
{

struct CounterValue
{
    CounterValue(uint16_t id, uint32_t value) :
        counterId(id), counterValue(value) {}
    uint16_t counterId;
    uint32_t counterValue;
};

}    // namespace pipe

}    // namespace arm