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.
src/kernel/process.h
- Committer:
- gawas
- Date:
- 2019-08-23
- Revision:
- 0:ccdea31d8eba
File content as of revision 0:ccdea31d8eba:
#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 */