Idris2/support/c/idris_memory.c

34 lines
681 B
C
Raw Normal View History

#include "idris_memory.h"
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include "idris_util.h"
2022-09-21 13:13:15 +03:00
void *idris2_malloc(int size) {
IDRIS2_VERIFY(size >= 0, "malloc negative argument: %d", size);
2022-09-21 13:13:15 +03:00
if (size == 0) {
// Do not depend on platform-speific behavior of malloc.
return NULL;
}
2022-09-21 13:13:15 +03:00
void *ptr = malloc(size);
IDRIS2_VERIFY(ptr, "malloc failed: %s", strerror(errno));
return ptr;
}
2022-09-21 13:13:15 +03:00
void idris2_free(void *ptr) {
if (!ptr) {
return;
}
free(ptr);
}
// TODO: remove `idrnet_malloc` and `idrnet_free` after bootstrap update
2022-09-21 13:13:15 +03:00
void *idrnet_malloc(int size) { return idris2_malloc(size); }
2022-09-21 13:13:15 +03:00
void idrnet_free(void *ptr) { idris2_free(ptr); }