由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 大家帮我看看如何设计OS profiling/tracing
相关主题
tracing和logging有什么区别?Perl programming请教
急问:大家一般都用什么profiling工具和memory leak的监测工Perl programming请教
gprof和STL的问题#ifdef, #ifndef 这些 preprocessor 应该叫什么呀?
[合集] 急问:大家一般都用什么profiling工具和memory leak的监怎样清理不要的C代码
code profiling 的问题弱问一个ifdef 和ifndef
大家都用什么工具来profile C/C++程序makefile 里面那个-D flags的问题
怎么样profile C++ code最好?关于程序必须支持win and linux, 可不可以用class而不是#ifdef WIN32 ?
当某个函数被调用的时候,需要定义一个宏CPP question
相关话题的讨论汇总
话题: log话题: os
进入Programming版参与讨论
1 (共1页)
s*****w
发帖数: 1527
1
简单说,要log一下createThread( ), contextSwitch( ),...要花多少时间。
我的想法是
#ifdef LOG
#define createThread createThreadLog
#else
#define createThread _createThread
#end
1 (共1页)
进入Programming版参与讨论
相关主题
CPP questioncode profiling 的问题
#ifdef _MSC_VER 是什么意思啊?大家都用什么工具来profile C/C++程序
问个两个.h文件互相include的问题怎么样profile C++ code最好?
关于C++中 extern "C"的问题。当某个函数被调用的时候,需要定义一个宏
tracing和logging有什么区别?Perl programming请教
急问:大家一般都用什么profiling工具和memory leak的监测工Perl programming请教
gprof和STL的问题#ifdef, #ifndef 这些 preprocessor 应该叫什么呀?
[合集] 急问:大家一般都用什么profiling工具和memory leak的监怎样清理不要的C代码
相关话题的讨论汇总
话题: log话题: os