aboutsummaryrefslogtreecommitdiff
path: root/profiling/client/include/Timestamp.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'profiling/client/include/Timestamp.hpp')
-rw-r--r--profiling/client/include/Timestamp.hpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/profiling/client/include/Timestamp.hpp b/profiling/client/include/Timestamp.hpp
new file mode 100644
index 0000000000..4961551396
--- /dev/null
+++ b/profiling/client/include/Timestamp.hpp
@@ -0,0 +1,24 @@
+//
+// Copyright © 2022 Arm Ltd. All rights reserved.
+// SPDX-License-Identifier: MIT
+//
+
+#pragma once
+
+#include "CounterValue.hpp"
+
+namespace arm
+{
+
+namespace pipe
+{
+
+struct Timestamp
+{
+ uint64_t timestamp;
+ std::vector<CounterValue> counterValues;
+};
+
+} // namespace pipe
+
+} // namespace arm