aboutsummaryrefslogtreecommitdiff
path: root/src/profiling/PeriodicCounterSelectionCommandHandler.hpp
diff options
context:
space:
mode:
authorRob Hughes <robert.hughes@arm.com>2020-04-24 11:41:34 +0100
committerRob Hughes <robert.hughes@arm.com>2020-05-19 10:54:15 +0000
commitb98032f6a46072fee9a2bfcbe631b8193ced567d (patch)
tree1de423d3271e9ecbc0d02b8f08751c9eefa29612 /src/profiling/PeriodicCounterSelectionCommandHandler.hpp
parented324051794a262a7694acfb0a378724d6ba8401 (diff)
downloadarmnn-b98032f6a46072fee9a2bfcbe631b8193ced567d.tar.gz
Fix some Windows build errors:
* Cast to correct datatype for Winsock API * Replace non-standard u_int32_t * Add missing link dependency of timelineDecoder on armnn * Don't try to link pthread if the platform doesn't have it * Use abstracted Socket type rather than int * Link to WinSock DLL on windows Change-Id: I9ace4af50257ce1e3da92fb4c452f36775dac973 Signed-off-by: Robert Hughes <robert.hughes@arm.com>
Diffstat (limited to 'src/profiling/PeriodicCounterSelectionCommandHandler.hpp')
-rw-r--r--src/profiling/PeriodicCounterSelectionCommandHandler.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/profiling/PeriodicCounterSelectionCommandHandler.hpp b/src/profiling/PeriodicCounterSelectionCommandHandler.hpp
index 8a3747fb33..ac08cc58ec 100644
--- a/src/profiling/PeriodicCounterSelectionCommandHandler.hpp
+++ b/src/profiling/PeriodicCounterSelectionCommandHandler.hpp
@@ -91,7 +91,7 @@ private:
}
}
void ParseData(const Packet& packet, CaptureData& captureData);
- std::set<armnn::BackendId> ProcessBackendCounterIds(const u_int32_t capturePeriod,
+ std::set<armnn::BackendId> ProcessBackendCounterIds(const uint32_t capturePeriod,
const std::set<uint16_t> newCounterIds,
const std::set<uint16_t> unusedCounterIds);