반응형
누가 이 함수를 호출할까??
궁금할땐
1. grep같은걸로 text로 찾기
2. gdb를 걸어놓고 bt로 확인
3. eclipse같은 툴로 caller확인
4. pointer를 이용해 찾기
#include <linux/kallsyms.h>
#define PRINT_INFO()
do {
printk("%s starting( caller:", __FUNCTION__);
print_symbol("%s)n", (unsigned long) __builtin_return_address(0));
} while (0)
반응형
'Program Language > C' 카테고리의 다른 글
sizeof (0) | 2012.06.04 |
---|---|
extern static 정리 (1) | 2012.04.25 |
printf uint64_t uint32_t (0) | 2011.12.01 |
ignoring return value of 'system', declared with attribute warn_unused_result (0) | 2011.11.11 |
format not a string literal and no format arguments (0) | 2011.11.11 |
댓글