Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Diff: src/kernel/process.h
- 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 */ +