码迷,mamicode.com
首页 > 其他好文 > 详细

systemtap get var of the tracepoing

时间:2018-05-10 11:18:46      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:name   tap   temp   template   int   sys   printf   poi   var   

kernel.trace("sched_switch")

func:
func:perf_trace_sched_stat_template
 get the function in

probe begin {
    printf("Begin")
}

probe kernel.function("tracepoint_probe_register") {
//    printf("pre_comm:%s\n", kernel_string($prev->comm))
    printf("func:%s\n", symname($probe))

}

probe end {
    printf("End")
}

defined in include/trace/trace_events.h

systemtap get var of the tracepoing

标签:name   tap   temp   template   int   sys   printf   poi   var   

原文地址:https://www.cnblogs.com/honpey/p/9017940.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!