如何在返回C之前调用函数?

时间:2009-03-20 15:30:19

标签: c gcc

我正在尝试在函数结束之前执行某些操作,然后才返回调用者。 为此,我想在某个上下文中覆盖return。行为应该与__cyg_profile_func_exit相同,但我想仅为某些函数激活它。

我不知道是否可以使用gcc builtins或者这种东西。

感谢。

2 个答案:

答案 0 :(得分:9)

GCC有一个属性,当自动变量超出范围时调用一个函数,并传递该变量的地址

void cleanup_fn(int *p) {
    puts("cleanup called...");
}

void f(void) {
    int p __attribute__((cleanup(cleanup_fn)));
    puts("in f...");
}

int main(void) {
    puts("calling f...");
    f();
    puts("out of it...");
    return 0;
}

输出:

calling f...
in f...
cleanup called...
out of it...

答案 1 :(得分:0)

不,不是C本身。

可以做的是写一个#define宏返回:

#define RETURN(func) if(_DEBUG_) func; return ;
#define RETURNV(func, val) if(_DEBUG_) func; return val ;

(警告,你可能想要更多地考虑保护特殊情况而不是我。)

否则,您需要编写一些在幕后编写代码的东西,这就是分析器所做的事情。