gawaskar kanagaraj / Mbed 2 deprecated Nucleo_printf

Dependencies:   mbed

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 */