Follow naming conventions

This commit is contained in:
Yota Toyama
2019-04-14 06:25:39 +00:00
parent 06505aa49c
commit e5543871d8

View File

@@ -8,7 +8,7 @@ use std::alloc::{GlobalAlloc, Layout};
const GC_SUCCESS: c_int = 0; const GC_SUCCESS: c_int = 0;
#[repr(C)] #[repr(C)]
struct GCStackBase { struct GcStackBase {
mem_base: *const c_void, mem_base: *const c_void,
reg_base: *const c_void, reg_base: *const c_void,
} }
@@ -17,10 +17,10 @@ struct GCStackBase {
extern "C" { extern "C" {
fn GC_allow_register_threads() -> c_void; fn GC_allow_register_threads() -> c_void;
fn GC_free(ptr: *mut c_void); fn GC_free(ptr: *mut c_void);
fn GC_get_stack_base(stack_base: *mut GCStackBase) -> c_int; fn GC_get_stack_base(stack_base: *mut GcStackBase) -> c_int;
fn GC_init() -> c_void; fn GC_init() -> c_void;
fn GC_malloc(size: size_t) -> *mut c_void; fn GC_malloc(size: size_t) -> *mut c_void;
fn GC_register_my_thread(stack_base: *const GCStackBase) -> c_int; fn GC_register_my_thread(stack_base: *const GcStackBase) -> c_int;
fn GC_unregister_my_thread(); fn GC_unregister_my_thread();
} }
@@ -33,7 +33,7 @@ impl Allocator {
} }
pub fn register_current_thread() -> Result<(), error::Error> { pub fn register_current_thread() -> Result<(), error::Error> {
let mut base = GCStackBase { let mut base = GcStackBase {
mem_base: std::ptr::null(), mem_base: std::ptr::null(),
reg_base: std::ptr::null(), reg_base: std::ptr::null(),
}; };