Files
mkrtos-real/mkrtos_user/lib/sys_util/inc/u_hd_man.h
2023-12-16 23:08:43 +08:00

12 lines
333 B
C

#pragma once
#include "u_types.h"
#define HANDLER_INVALID ((umword_t)(-1))
obj_handler_t handler_alloc(void);
void handler_free(obj_handler_t hd_inx);
void handler_free_umap(obj_handler_t hd_inx);
void handler_del_umap(obj_handler_t hd_inx);
void hanlder_pre_alloc(obj_handler_t inx);
bool_t handler_is_used(obj_handler_t hd_inx);