os-core/kernel/leos/memory.h

31 lines
635 B
C
Raw Normal View History

2019-05-29 11:10:01 +02:00
/******************************************************************************
*
2020-01-15 10:56:04 +01:00
* Copyright (c) 2017-2020 by Löwenware Ltd
2019-05-29 11:10:01 +02:00
* Please, refer LICENSE file for legal information
*
******************************************************************************/
/**
2020-01-15 10:56:04 +01:00
* @file memory.h
2019-05-29 11:10:01 +02:00
* @author Ilja Kartašov <ik@lowenware.com>
* @brief
*
* @see https://lowenware.com/
*/
2020-01-15 10:56:04 +01:00
#ifndef MEMORY_H_C583E24E_55B0_49EF_99C9_5A36B04468AC
#define MEMORY_H_C583E24E_55B0_49EF_99C9_5A36B04468AC
2019-05-29 11:10:01 +02:00
2020-01-29 12:01:32 +01:00
void
Memory_init(void);
2020-01-15 10:56:04 +01:00
void *
Memory_getPage(void);
2019-05-29 11:10:01 +02:00
void
2020-01-15 10:56:04 +01:00
Memory_freePage(void *p_addr);
2019-05-29 11:10:01 +02:00
2020-01-15 10:56:04 +01:00
#endif /* !MEMORY_H */