instrument.c
来自「一个动态函数分析工具」· C语言 代码 · 共 55 行
C
55 行
/******************************************************************** * File: instrument.c * * Instrumentation source -- link this with your application, and * then execute to build trace data file (trace.txt). * * Author: M. Tim Jones <mtj@mtjones.com> * */#include <stdio.h>#include <stdlib.h>/* Function prototypes with attributes */void main_constructor( void ) __attribute__ ((no_instrument_function, constructor));void main_destructor( void ) __attribute__ ((no_instrument_function, destructor));void __cyg_profile_func_enter( void *, void * ) __attribute__ ((no_instrument_function));void __cyg_profile_func_exit( void *, void * ) __attribute__ ((no_instrument_function));static FILE *fp;void main_constructor( void ){ fp = fopen( "trace.txt", "w" ); if (fp == NULL) exit(-1);}void main_deconstructor( void ){ fclose( fp );}void __cyg_profile_func_enter( void *this, void *callsite ){ fprintf(fp, "E%p\n", (int *)this);}void __cyg_profile_func_exit( void *this, void *callsite ){ fprintf(fp, "X%p\n", (int *)this);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?