为什么在这里使用三个 * ?(glibc 源代码 glibc-2.9/sysdeps/mach/bits/libc-lock.h 第 81 行)
在线查看 libc-lock.h 代码 -> http://www.oschina.net/code/explore/glibc-2.9/sysdeps/mach/bits/libc-lock.h
/* Start a critical region with a cleanup function */
#define __libc_cleanup_region_start(DOIT, FCT, ARG) \
{ \
typeof (***(FCT)) *__save_FCT = (DOIT) ? (FCT) : 0; \
typeof (ARG) __save_ARG = ARG; \
/* close brace is in __libc_cleanup_region_end below. */
/* End a critical region started with __libc_cleanup_region_start. */
#define __libc_cleanup_region_end(DOIT) \
if ((DOIT) && __save_FCT != 0) \
(*__save_FCT)(__save_ARG); \
}
我不知道为什么在这里使用 3 *,为什么不
typeof (*(FCT)) * __save_FCT = (DOIT) ? (FCT) : 0;
提前致谢。