如果把函数指针传递给另一个函数(调用者),当调用者执行时,函数指针所指的函数也被执行。被调用的函数就是回调函数。
回调函数实现的机制是
1、定义一个回调函数;
2、提供函数实现的一方在初始化的时候,通过注册函数 向调用者(管理单元/调度函数)注册回调函数的函数指针。
3、当特定的事件发生时候,调用者使用函数指针调用回调函数对事件进行处理。
举例:
Quagga0.9.22中OSPF注册新建接口事件回调函数(省略了无关语句):
定义回调函数:
int ospf_if_new_hook (struct interface *ifp){函数定义}
定义存储回调函数的全局变量(每个上层协议进程一个):
struct if_master{
int (*if_new_hook) (struct interface *);
} if_master;
定义注册函数:
void if_add_hook (int type, int (*func)(struct interface *ifp)){ if_master.if_new_hook = func;}
注册回调函数:
if_add_hook (IF_NEW_HOOK, ospf_if_new_hook);
定义调用者函数:
struct interface * if_create (const char *name, int namelen){(*if_master.if_new_hook) (ifp);}
效果:每当有新建接口事件时,就会执行ospf_if_new_hook()。