gpt4 book ai didi

c - 使用 GCC 和 clang __attribute__((cleanup)) 和指针声明的良好且惯用的方法

转载 作者:太空狗 更新时间:2023-10-29 16:29:43 26 4
gpt4 key购买 nike

我认为 GCC 扩展 __attribute__((cleanup))是个好主意,至少在某些情况下是这样,但我不知道如何以好的方式使用它。我所做的一切看起来仍然很烦人。

我看到很多代码都在做 #define _cleanup_(x) __attribute__((cleanup(x)) 只是为了减少输入,但它有一种方法可以传递一个标准函数,比如 freeclosedirfclose 等?

据我所知,我不能只写:

__attribute__((cleanup(free))) char *foo = malloc(10);

因为清理回调会收到 char** 指针,所以我必须总是这样写:

static void free_char(char **ptr) { free(*ptr); }
__cleanup__((free_char)) char *foo = malloc(10);

这很烦人,最烦人的部分是为你需要的所有类型定义这样的清理函数,因为显然你不能只为 void ** 定义它。避免这些事情的最佳方法是什么?

最佳答案

你不能写__attribute__((cleanup(free))),但是你不需要为每个类型写一个free清理函数。这很丑陋,但你可以这样写:

static void cleanup_free(void *p) {
free(*(void**) p);
}

我第一次看到这个in the systemd codebase .

对于其他功能,您通常需要编写一个具有额外间接级别的包装器,以便与 __attribute__((cleanup)) 一起使用。 系统 defines a helper macro for this :

#define DEFINE_TRIVIAL_CLEANUP_FUNC(type, func)             \
static inline void func##p(type *p) { \
if (*p) \
func(*p); \
} \
struct __useless_struct_to_allow_trailing_semicolon__

使用了 all over the place ,例如

DEFINE_TRIVIAL_CLEANUP_FUNC(FILE*, pclose);

#define _cleanup_pclose_ __attribute__((cleanup(pclosep)))

关于c - 使用 GCC 和 clang __attribute__((cleanup)) 和指针声明的良好且惯用的方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34574933/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com