aboutsummaryrefslogtreecommitdiff
path: root/profiling/common/include/SocketConnectionException.hpp
diff options
context:
space:
mode:
authorJim Flynn <jim.flynn@arm.com>2022-04-12 17:19:28 +0100
committerTeresaARM <teresa.charlinreyes@arm.com>2022-04-14 14:06:56 +0000
commite195a0418d86650e132737716059bff0ec80257f (patch)
tree1678283a958a2ab74cd27b648f5a69ef5270d289 /profiling/common/include/SocketConnectionException.hpp
parent69515d3b36653a00a5abee8bf52ac26dd6522bee (diff)
downloadarmnn-e195a0418d86650e132737716059bff0ec80257f.tar.gz
IVGCVSW-6710 Add compile of BareMetalDeserializedGraph sample
Change-Id: Ice69c2a22f589f68d302f80500dfe4e514a796d2 Signed-off-by: Jim Flynn <jim.flynn@arm.com>
Diffstat (limited to 'profiling/common/include/SocketConnectionException.hpp')
-rw-r--r--profiling/common/include/SocketConnectionException.hpp30
1 files changed, 25 insertions, 5 deletions
diff --git a/profiling/common/include/SocketConnectionException.hpp b/profiling/common/include/SocketConnectionException.hpp
index 42b8d9d67e..f4ed2ebb23 100644
--- a/profiling/common/include/SocketConnectionException.hpp
+++ b/profiling/common/include/SocketConnectionException.hpp
@@ -20,24 +20,42 @@ namespace pipe
class SocketConnectionException : public std::exception
{
public:
- explicit SocketConnectionException(const std::string &message, arm::pipe::Socket socket)
- : m_Message(message), m_Socket(socket), m_ErrNo(-1) {};
+ explicit SocketConnectionException(const std::string& message
+#if !defined(ARMNN_DISABLE_SOCKETS)
+ , arm::pipe::Socket socket
+#endif
+ )
+ : m_Message(message),
+#if !defined(ARMNN_DISABLE_SOCKETS)
+ m_Socket(socket),
+#endif
+ m_ErrNo(-1) {};
- explicit SocketConnectionException(const std::string &message, arm::pipe::Socket socket, int errNo)
- : m_Message(message), m_Socket(socket), m_ErrNo(errNo) {};
+ explicit SocketConnectionException(const std::string& message,
+#if !defined(ARMNN_DISABLE_SOCKETS)
+ arm::pipe::Socket socket,
+#endif
+ int errNo)
+ : m_Message(message),
+#if !defined(ARMNN_DISABLE_SOCKETS)
+ m_Socket(socket),
+#endif
+ m_ErrNo(errNo) {};
/// @return - Error message of SocketProfilingConnection
- virtual const char *what() const noexcept override
+ virtual const char* what() const noexcept override
{
return m_Message.c_str();
}
/// @return - Socket File Descriptor of SocketProfilingConnection
/// or '-1', an invalid file descriptor
+#if !defined(ARMNN_DISABLE_SOCKETS)
arm::pipe::Socket GetSocketFd() const noexcept
{
return m_Socket;
}
+#endif
/// @return - errno of SocketProfilingConnection
int GetErrorNo() const noexcept
@@ -47,7 +65,9 @@ public:
private:
std::string m_Message;
+#if !defined(ARMNN_DISABLE_SOCKETS)
arm::pipe::Socket m_Socket;
+#endif
int m_ErrNo;
};
} // namespace pipe