2021-03-20 14:16:36 +01:00
|
|
|
module builtin
|
|
|
|
|
|
|
|
// Just define the C functions, so that V does not error because of the missing definitions.
|
|
|
|
|
|
|
|
// NB: they will NOT be used, since calls to them are wrapped with `$if gcboehm ? { }`
|
|
|
|
|
|
|
|
fn C.GC_MALLOC(n size_t) voidptr
|
|
|
|
|
2021-04-14 00:40:26 +02:00
|
|
|
fn C.GC_MALLOC_ATOMIC(n size_t) voidptr
|
|
|
|
|
2021-03-26 15:44:45 +01:00
|
|
|
fn C.GC_MALLOC_UNCOLLECTABLE(n size_t) voidptr
|
|
|
|
|
2021-03-20 14:16:36 +01:00
|
|
|
fn C.GC_REALLOC(ptr voidptr, n size_t) voidptr
|
|
|
|
|
|
|
|
fn C.GC_FREE(ptr voidptr)
|
2021-03-25 06:28:30 +01:00
|
|
|
|
2021-03-25 16:52:33 +01:00
|
|
|
// provide an empty function when manual memory management is used
|
|
|
|
// to simplify leak detection
|
|
|
|
//
|
|
|
|
pub fn gc_check_leaks() {}
|