2019-02-06 14:07:38 +01:00
|
|
|
//----------------------------------------------------------------------------//
|
|
|
|
// GNU GPL OS/K //
|
|
|
|
// //
|
2019-03-08 09:00:55 +01:00
|
|
|
// Desc: Memory allocation functions //
|
2019-02-06 14:07:38 +01:00
|
|
|
// //
|
2019-02-16 23:36:33 +01:00
|
|
|
// //
|
|
|
|
// Copyright © 2018-2019 The OS/K Team //
|
|
|
|
// //
|
|
|
|
// This file is part of OS/K. //
|
|
|
|
// //
|
|
|
|
// OS/K is free software: you can redistribute it and/or modify //
|
|
|
|
// it under the terms of the GNU General Public License as published by //
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or //
|
|
|
|
// any later version. //
|
|
|
|
// //
|
|
|
|
// OS/K is distributed in the hope that it will be useful, //
|
|
|
|
// but WITHOUT ANY WARRANTY//without even the implied warranty of //
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the //
|
|
|
|
// GNU General Public License for more details. //
|
|
|
|
// //
|
|
|
|
// You should have received a copy of the GNU General Public License //
|
|
|
|
// along with OS/K. If not, see <https://www.gnu.org/licenses/>. //
|
2019-02-06 14:07:38 +01:00
|
|
|
//----------------------------------------------------------------------------//
|
|
|
|
|
2019-05-13 23:22:27 +02:00
|
|
|
#ifndef _LIBC_H
|
|
|
|
#include <libc.h>
|
2019-02-06 14:07:38 +01:00
|
|
|
#endif
|
|
|
|
|
2019-05-13 23:22:27 +02:00
|
|
|
#ifndef _EX_MALLOC_H
|
|
|
|
#define _EX_MALLOC_H
|
2019-02-06 14:07:38 +01:00
|
|
|
|
2019-02-16 23:36:33 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2019-02-06 14:07:38 +01:00
|
|
|
//------------------------------------------//
|
|
|
|
|
2019-04-06 07:53:58 +02:00
|
|
|
// Flags for KalAllocMemoryEx
|
2019-03-18 17:25:44 +01:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
// Return zeroed-out memory
|
|
|
|
M_ZEROED = 1,
|
|
|
|
|
|
|
|
// Crash if allocation fails (ENABLED by default in the kernel)
|
|
|
|
M_FAILCRASH = 2,
|
|
|
|
|
|
|
|
// Do NOT crash if allocation failed (meaningless outside of the kernel)
|
|
|
|
M_CANFAIL = 4,
|
|
|
|
};
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
// Default memory allocation alignment (in bytes)
|
2019-04-06 07:53:58 +02:00
|
|
|
// Asking KalAllocMemoryEx for an alignment of 0
|
2019-03-18 17:25:44 +01:00
|
|
|
// will cause it to use this value
|
|
|
|
M_DEFAULT_ALIGNMENT = alignof(QWORD),
|
|
|
|
|
|
|
|
// Minimal memory allocation alignment (in bytes)
|
2019-04-06 07:53:58 +02:00
|
|
|
// Asking KalAllocMemoryEx for an nonzero alignment
|
2019-03-18 17:25:44 +01:00
|
|
|
// lower than this value will cause a EALIGN error
|
|
|
|
M_MINIMAL_ALIGNMENT = M_DEFAULT_ALIGNMENT
|
|
|
|
};
|
2019-02-06 14:07:38 +01:00
|
|
|
|
2019-04-06 07:53:58 +02:00
|
|
|
error_t KalAllocMemoryEx(void **ptr, size_t req, int flags, size_t align);
|
|
|
|
error_t KalAllocMemory(void **ptr, size_t req);
|
2019-03-18 17:25:44 +01:00
|
|
|
error_t KalFreeMemory(void *ptr);
|
2019-02-06 14:07:38 +01:00
|
|
|
|
|
|
|
//------------------------------------------//
|
|
|
|
|
2019-02-16 23:36:33 +01:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2019-02-06 14:07:38 +01:00
|
|
|
#endif
|
|
|
|
|