summaryrefslogtreecommitdiff
path: root/source/kit/allocator.h
diff options
context:
space:
mode:
authorMitya Selivanov <automainint@guattari.tech>2024-07-14 21:12:37 +0200
committerMitya Selivanov <automainint@guattari.tech>2024-07-14 21:12:37 +0200
commit30740ca4131d1f574718262451b4410207dc8d4e (patch)
treefc88b16a216079397ad85b9c6b1a1c1c5712a814 /source/kit/allocator.h
parent5e3c99bb1cf1d03ea006300121265571f5008fd2 (diff)
downloadsaw-30740ca4131d1f574718262451b4410207dc8d4e.zip
Reworking the build system
Diffstat (limited to 'source/kit/allocator.h')
-rw-r--r--source/kit/allocator.h50
1 files changed, 0 insertions, 50 deletions
diff --git a/source/kit/allocator.h b/source/kit/allocator.h
deleted file mode 100644
index 97e453e..0000000
--- a/source/kit/allocator.h
+++ /dev/null
@@ -1,50 +0,0 @@
-#ifndef KIT_ALLOCATOR_H
-#define KIT_ALLOCATOR_H
-
-#include "types.h"
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-enum {
- KIT_ALLOC_TYPE_NONE,
- KIT_ALLOC_TYPE_DEFAULT,
- KIT_ALLOC_TYPE_BUFFER,
-};
-
-enum {
- KIT_ALLOCATE,
- KIT_ALLOCATE_ZERO,
- KIT_DEALLOCATE,
- KIT_REALLOCATE,
- KIT_REALLOCATE_ZERO,
- KIT_DEALLOCATE_ALL,
-};
-
-typedef struct {
- i32 type;
- i64 size;
- union {
- u8 *bytes;
- void *data;
- };
-} kit_allocator_t;
-
-// Application should implement this function if custom allocator
-// dispatch is enabled.
-//
-// See KIT_ENABLE_CUSTOM_ALLOC_DISPATCH macro.
-//
-void *kit_alloc_dispatch(kit_allocator_t *alloc, i32 request,
- i64 size, i64 previous_size, void *pointer);
-
-kit_allocator_t kit_alloc_default(void);
-
-kit_allocator_t kit_alloc_buffer(i64 size, void *buffer);
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif