# process_analysis **Repository Path**: wexiangis/process_analysis ## Basic Information - **Project Name**: process_analysis - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2024-05-16 - **Last Updated**: 2024-05-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 性能分析 ``` ## 1. 编译测试程序 make ## 2. 监测程序耗时 ./test_time.sh ## 3. 监测程序各函数耗时/调用次数 ./test_gprof.sh ``` # 编码检查 * 内存问题 ``` ## 1. 修改源码 mem_test.c 开放对应代码 ## 2. 编译源码 make mem ## 3. 运行&查看报错信息 ./out.mem_test ``` * 线程问题 (编译项-fsanitize=thread可能对编译器版本有要求) ``` ## 1. 修改源码 thread_test.c 开放对应代码 ## 2. 编译源码 make thread ## 3. 运行&查看报错信息 ./out.thread_test ```