thmap.h | 37 typedef struct thmap thmap_t; typedef in typeref:struct:thmap 47 thmap_t * thmap_create(uintptr_t, const thmap_ops_t *, unsigned); 48 void thmap_destroy(thmap_t *); 50 void * thmap_get(thmap_t *, const void *, size_t); 51 void * thmap_put(thmap_t *, const void *, size_t, void *); 52 void * thmap_del(thmap_t *, const void *, size_t); 54 void * thmap_stage_gc(thmap_t *); 55 void thmap_gc(thmap_t *, void *); 57 int thmap_setroot(thmap_t *, uintptr_t); 58 uintptr_t thmap_getroot(const thmap_t *); [all...] |