1 // 2 // Copyright © 2020 Arm Ltd and Contributors. All rights reserved. 3 // SPDX-License-Identifier: MIT 4 // 5 6 #pragma once 7 8 #include "ILocalPacketHandler.hpp" 9 10 #include <common/include/Packet.hpp> 11 12 #include <cstdint> 13 14 namespace arm 15 { 16 17 namespace pipe 18 { 19 20 class IProfilingServiceStatus 21 { 22 public: 23 virtual void NotifyProfilingServiceActive() = 0; 24 virtual void WaitForProfilingServiceActivation(unsigned int timeout) = 0; ~IProfilingServiceStatus()25 virtual ~IProfilingServiceStatus() {}; 26 }; 27 28 } // namespace pipe 29 30 } // namespace arm 31