upload latest liborchestration archive 14/204614/1 accepted/tizen/unified/20190425.111806 submit/tizen/20190425.040934
authorwansuyoo <wansu.yoo@samsung.com>
Thu, 25 Apr 2019 03:19:31 +0000 (12:19 +0900)
committerwansuyoo <wansu.yoo@samsung.com>
Thu, 25 Apr 2019 03:20:22 +0000 (12:20 +0900)
Change-Id: Ia69673d1b2788ee7647272a732953217ee5d418f
Signed-off-by: wansuyoo <wansu.yoo@samsung.com>
src/CMain/bin/edge-orchestration
src/CMain/inc/linux_arm/orchestration.h
src/CMain/lib/liborchestration-0.0.1-20190425.1131.a [moved from src/CMain/lib/liborchestration-0.0.1-20190419.1556.a with 79% similarity]
src/CMain/lib/liborchestration.a
src/CMain/lib/linux_arm/liborchestration-0.0.1-20190425.1131.a [moved from src/CMain/lib/linux_arm/liborchestration-0.0.1-20190424.1539.a with 60% similarity]
src/CMain/lib/linux_arm/liborchestration.a
src/GoMain/bin/edge-orchestration [new file with mode: 0755]
src/errormsg/errormsg.go
src/errormsg/errormsg_test.go

index 2fc734d..e93652d 100755 (executable)
Binary files a/src/CMain/bin/edge-orchestration and b/src/CMain/bin/edge-orchestration differ
index e2cf75b..e7df745 100644 (file)
@@ -3,16 +3,14 @@
 /* package interface */
 
 
-#line 1 "cgo-builtin-export-prolog"
+#line 1 "cgo-builtin-prolog"
 
 #include <stddef.h> /* for ptrdiff_t below */
 
 #ifndef GO_CGO_EXPORT_PROLOGUE_H
 #define GO_CGO_EXPORT_PROLOGUE_H
 
-#ifndef GO_CGO_GOSTRING_TYPEDEF
 typedef struct { const char *p; ptrdiff_t n; } _GoString_;
-#endif
 
 #endif
 
@@ -71,9 +69,7 @@ typedef double _Complex GoComplex128;
 */
 typedef char _check_for_32_bit_pointer_matching_GoInt[sizeof(void*)==32/8 ? 1:-1];
 
-#ifndef GO_CGO_GOSTRING_TYPEDEF
 typedef _GoString_ GoString;
-#endif
 typedef void *GoMap;
 typedef void *GoChan;
 typedef struct { void *t; void *v; } GoInterface;
similarity index 79%
rename from src/CMain/lib/liborchestration-0.0.1-20190419.1556.a
rename to src/CMain/lib/liborchestration-0.0.1-20190425.1131.a
index 25a3a79..00c0b91 100644 (file)
Binary files a/src/CMain/lib/liborchestration-0.0.1-20190419.1556.a and b/src/CMain/lib/liborchestration-0.0.1-20190425.1131.a differ
index 1448c9b..bea9623 120000 (symlink)
@@ -1 +1 @@
-liborchestration-0.0.1-20190419.1556.a
\ No newline at end of file
+liborchestration-0.0.1-20190425.1131.a
\ No newline at end of file
similarity index 60%
rename from src/CMain/lib/linux_arm/liborchestration-0.0.1-20190424.1539.a
rename to src/CMain/lib/linux_arm/liborchestration-0.0.1-20190425.1131.a
index 862ccf2..66d8fa7 100644 (file)
Binary files a/src/CMain/lib/linux_arm/liborchestration-0.0.1-20190424.1539.a and b/src/CMain/lib/linux_arm/liborchestration-0.0.1-20190425.1131.a differ
index 15422d8..bea9623 120000 (symlink)
@@ -1 +1 @@
-liborchestration-0.0.1-20190424.1539.a
\ No newline at end of file
+liborchestration-0.0.1-20190425.1131.a
\ No newline at end of file
diff --git a/src/GoMain/bin/edge-orchestration b/src/GoMain/bin/edge-orchestration
new file mode 100755 (executable)
index 0000000..1d7bae2
Binary files /dev/null and b/src/GoMain/bin/edge-orchestration differ
index 832c898..07da1d4 100644 (file)
@@ -1,3 +1,19 @@
+/*******************************************************************************\r
+ * Copyright 2019 Samsung Electronics All Rights Reserved.\r
+ *\r
+ * Licensed under the Apache License, Version 2.0 (the "License");\r
+ * you may not use this file except in compliance with the License.\r
+ * You may obtain a copy of the License at\r
+ *\r
+ * http://www.apache.org/licenses/LICENSE-2.0\r
+ *\r
+ * Unless required by applicable law or agreed to in writing, software\r
+ * distributed under the License is distributed on an "AS IS" BASIS,\r
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ * See the License for the specific language governing permissions and\r
+ * limitations under the License.\r
+ *\r
+ *******************************************************************************/\r
 package errormsg\r
 \r
 import (\r
index e35ff55..c02de12 100644 (file)
@@ -1,11 +1,26 @@
+/*******************************************************************************\r
+ * Copyright 2019 Samsung Electronics All Rights Reserved.\r
+ *\r
+ * Licensed under the Apache License, Version 2.0 (the "License");\r
+ * you may not use this file except in compliance with the License.\r
+ * You may obtain a copy of the License at\r
+ *\r
+ * http://www.apache.org/licenses/LICENSE-2.0\r
+ *\r
+ * Unless required by applicable law or agreed to in writing, software\r
+ * distributed under the License is distributed on an "AS IS" BASIS,\r
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ * See the License for the specific language governing permissions and\r
+ * limitations under the License.\r
+ *\r
+ *******************************************************************************/\r
 package errormsg\r
 \r
-import \r
-(\r
+import (\r
        "testing"\r
 )\r
 \r
 func TestErrorMsg(t *testing.T) {\r
        err := ToError(ErrorNotReadyOrchestrationInit)\r
        t.Log(ToString(err))\r
-}
\ No newline at end of file
+}\r