mirror of
https://github.com/bdwgc/bdwgc-rust.git
synced 2026-05-29 09:58:55 -06:00
@@ -1,8 +1,11 @@
|
||||
[package]
|
||||
name = "bdwgc-alloc"
|
||||
description = "impl GlobalAlloc for bdwgc"
|
||||
version = "0.5.2"
|
||||
authors = ["swgillespie <sean.william.g@gmail.com>", "Yota Toyama <raviqqe@gmail.com>"]
|
||||
version = "0.6.0"
|
||||
authors = [
|
||||
"swgillespie <sean.william.g@gmail.com>",
|
||||
"Yota Toyama <raviqqe@gmail.com>"
|
||||
]
|
||||
repository = "https://github.com/raviqqe/bdwgc-alloc"
|
||||
edition = "2018"
|
||||
license = "MIT"
|
||||
|
||||
@@ -22,6 +22,7 @@ extern "C" {
|
||||
fn GC_get_stack_base(stack_base: *mut GcStackBase) -> c_int;
|
||||
fn GC_init();
|
||||
fn GC_malloc(size: size_t) -> *mut c_void;
|
||||
fn GC_realloc(ptr: *mut c_void, size: size_t) -> *mut c_void;
|
||||
fn GC_register_my_thread(stack_base: *const GcStackBase) -> c_int;
|
||||
fn GC_set_stackbottom(thread: *const c_void, stack_bottom: *const GcStackBase);
|
||||
fn GC_unregister_my_thread();
|
||||
@@ -79,4 +80,8 @@ unsafe impl GlobalAlloc for Allocator {
|
||||
unsafe fn dealloc(&self, ptr: *mut u8, _layout: Layout) {
|
||||
GC_free(ptr as *mut c_void)
|
||||
}
|
||||
|
||||
unsafe fn realloc(&self, ptr: *mut u8, _layout: Layout, size: usize) -> *mut u8 {
|
||||
GC_realloc(ptr as *mut c_void, size) as *mut u8
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user