mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
25 lines
690 B
V
25 lines
690 B
V
module builtin
|
|
|
|
// Just define the C functions, so that V does not error because of the missing definitions.
|
|
|
|
// Note: they will NOT be used, since calls to them are wrapped with `$if gcboehm ? { }`
|
|
|
|
fn C.GC_MALLOC(n usize) voidptr
|
|
|
|
fn C.GC_MALLOC_ATOMIC(n usize) voidptr
|
|
|
|
fn C.GC_MALLOC_UNCOLLECTABLE(n usize) voidptr
|
|
|
|
fn C.GC_REALLOC(ptr voidptr, n usize) voidptr
|
|
|
|
fn C.GC_FREE(ptr voidptr)
|
|
|
|
fn C.GC_get_heap_usage_safe(pheap_size &usize, pfree_bytes &usize, punmapped_bytes &usize, pbytes_since_gc &usize, ptotal_bytes &usize)
|
|
|
|
fn C.GC_get_memory_use() usize
|
|
|
|
// provide an empty function when manual memory management is used
|
|
// to simplify leak detection
|
|
//
|
|
pub fn gc_check_leaks() {}
|