📄 instrument.c
字号:
/******************************************************************** * 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -