aboutsummaryrefslogtreecommitdiffstats
path: root/policy_manager/stm/zipc/src/Common/MisraCType.h
diff options
context:
space:
mode:
authorYuta Doi <yuta-d@witz-inc.co.jp>2018-07-11 16:21:37 +0900
committerYuta Doi <yuta-d@witz-inc.co.jp>2018-07-23 22:04:25 +0900
commit0489c6f3fae7a31b2d48beeff60eab4ce2dc870b (patch)
tree08f3edc6d02258e413c1c89332439275a95eb88b /policy_manager/stm/zipc/src/Common/MisraCType.h
parentd5fbf53aa76dbba9316b08c1ca499d4639d9db1b (diff)
Add policy table generated by ZIPC for EXAMPLEsandbox/yuta-d/add_pm
To PolicyManager, add the source code of policy table which is generated by ZIPC for EXAMPLE. If use this example, please comment out line 22 and uncomment line 23 in policy_manager/CMakeLists.txt as follows: #set(USE_STM_NAME stub) set(USE_STM_NAME zipc) If try to show split layout, please rename from roles.db.split to roles.db in policy_manager/db/. Bug-AGL: SPEC-1537 Change-Id: I4b35f148313e0c5a12c59ed1c2f8eb6fbcf3ea6b Signed-off-by: Yuta Doi <yuta-d@witz-inc.co.jp>
Diffstat (limited to 'policy_manager/stm/zipc/src/Common/MisraCType.h')
-rw-r--r--policy_manager/stm/zipc/src/Common/MisraCType.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/policy_manager/stm/zipc/src/Common/MisraCType.h b/policy_manager/stm/zipc/src/Common/MisraCType.h
new file mode 100644
index 0000000..5a535fb
--- /dev/null
+++ b/policy_manager/stm/zipc/src/Common/MisraCType.h
@@ -0,0 +1,16 @@
+#ifndef ZHEADER_MISRACTYPE_H
+#define ZHEADER_MISRACTYPE_H
+
+typedef char char_t;
+typedef signed char int8_t;
+typedef unsigned char uint8_t;
+typedef signed short int16_t;
+typedef unsigned short uint16_t;
+typedef signed int int32_t;
+typedef unsigned int uint32_t;
+typedef signed long int64_t;
+typedef unsigned long uint64_t;
+typedef float float32_t;
+typedef double float64_t;
+
+#endif