blob: 0fc19031187837fe7efd2a6f6eec8d8e654637e2 [file] [log] [blame]
Jim Flynnaf947722022-03-02 11:04:47 +00001//
2// Copyright © 2022 Arm Ltd. All rights reserved.
3// SPDX-License-Identifier: MIT
4//
5
6#pragma once
7
8namespace arm
9{
10
11namespace pipe
12{
13
14enum class ProfilingState
15{
16 Uninitialised,
17 NotConnected,
18 WaitingForAck,
19 Active
20};
21
22} // namespace pipe
23
24} // namespace arm