📄 gc.h
字号:
#ifndef __GC_H__#define __GC_H__typedef struct gc_st gc_t;/* Most of these functions peek into a per-thread state struct. */#include "ptst.h"/* Initialise GC section of given per-thread state structure. */gc_t *gc_init(void);int gc_add_allocator(int alloc_size);void gc_remove_allocator(int alloc_id);/* * Memory allocate/free. An unsafe free can be used when an object was * not made visible to other processes. */void *gc_alloc(ptst_t *ptst, int alloc_id);void gc_free(ptst_t *ptst, void *p, int alloc_id);void gc_unsafe_free(ptst_t *ptst, void *p, int alloc_id);/* * Hook registry. Allows users to hook in their own per-epoch delay * lists. */typedef void (*hook_fn_t)(ptst_t *, void *);int gc_add_hook(hook_fn_t fn);void gc_remove_hook(int hook_id);void gc_add_ptr_to_hook_list(ptst_t *ptst, void *ptr, int hook_id);/* Per-thread entry/exit from critical regions */void gc_enter(ptst_t *ptst);void gc_exit(ptst_t *ptst);/* Start-of-day initialisation of garbage collector. */void _init_gc_subsystem(void);void _destroy_gc_subsystem(void);#endif /* __GC_H__ */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -