gawaskar kanagaraj / Mbed 2 deprecated Nucleo_printf

Dependencies:   mbed

Revision:
0:ccdea31d8eba
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/kernel/process.h	Fri Aug 23 16:43:44 2019 +0000
@@ -0,0 +1,26 @@
+#ifndef PROCESS_H
+#define PROCESS_H
+
+
+#include <stdint.h>
+
+#include <apex_process.h>
+
+#include "types.h"
+
+
+void create_process (
+    partition_t* partition,
+    uint32_t memoryAddress,
+    /*in */ PROCESS_ATTRIBUTE_TYPE   *ATTRIBUTES,
+    /*out*/ PROCESS_ID_TYPE          *PROCESS_ID,
+    /*out*/ RETURN_CODE_TYPE         *RETURN_CODE );
+
+void runtime_create_process(
+    PROCESS_ATTRIBUTE_TYPE *attributes,
+    PROCESS_ID_TYPE *processId,
+    RETURN_CODE_TYPE *RETURN_CODE);
+
+
+#endif /* PROCESS_H */
+