From 6940dd720ebb6b3d1df8ca203ab696daefe58189 Mon Sep 17 00:00:00 2001 From: Jim Flynn Date: Fri, 20 Mar 2020 12:25:56 +0000 Subject: renamed Documentation folder 20.02 and added .nojekyll file Signed-off-by: Jim Flynn --- 20.02/_processes_8cpp_source.xhtml | 116 +++++++++++++++++++++++++++++++++++++ 1 file changed, 116 insertions(+) create mode 100644 20.02/_processes_8cpp_source.xhtml (limited to '20.02/_processes_8cpp_source.xhtml') diff --git a/20.02/_processes_8cpp_source.xhtml b/20.02/_processes_8cpp_source.xhtml new file mode 100644 index 0000000000..65d04652c9 --- /dev/null +++ b/20.02/_processes_8cpp_source.xhtml @@ -0,0 +1,116 @@ + + + + + + + + + + + + + +ArmNN: src/armnnUtils/Processes.cpp Source File + + + + + + + + + + + + + + + + +
+
+ + + + ArmNN + + + +
+
+  20.02 +
+
+
+ + + + + + + +
+
+ +
+
+
+ +
+ +
+
+ + +
+ +
+ +
+
+
Processes.cpp
+
+
+Go to the documentation of this file.
1 //
2 // Copyright © 2020 Arm Ltd. All rights reserved.
3 // SPDX-License-Identifier: MIT
4 //
5 
6 #include "Processes.hpp"
7 
8 #if defined(__unix__)
9 #include <unistd.h>
10 #elif defined(_MSC_VER)
11 #define WIN32_LEAN_AND_MEAN
12 #include <Windows.h>
13 #endif
14 
15 namespace armnnUtils
16 {
17 namespace Processes
18 {
19 
21 {
22 #if defined(__unix__)
23  return getpid();
24 #elif defined(_MSC_VER)
25  return ::GetCurrentProcessId();
26 #endif
27 }
28 
29 }
30 }
+ + +
+
+ + + + -- cgit v1.2.1