示例#1
0
def prof_timed(args):
    show_profile(
        args, lambda traces: prof.get_duration_profile(traces,
                                                       get_trace_filter(args)))
示例#2
0
文件: trace.py 项目: vyommani/osv
def get_wait_profile(traces):
    return prof.get_duration_profile(traces, "sched_wait", "sched_wait_ret")
示例#3
0
def get_wait_profile(traces):
    return prof.get_duration_profile(traces, sample_name_is("sched_wait"))
示例#4
0
 def get_profile(traces):
     return prof.get_duration_profile(traces,
                                      sample_name_is("mutex_lock_wait"))
示例#5
0
 def get_profile(traces):
     return prof.get_duration_profile(traces, "mutex_lock_wait", "mutex_lock_wake")
示例#6
0
文件: trace.py 项目: Samsara00/osv
def prof_timed(args):
    show_profile(args, lambda traces: prof.get_duration_profile(traces, get_trace_filter(args)))
示例#7
0
文件: trace.py 项目: Samsara00/osv
 def get_profile(traces):
     return prof.get_duration_profile(traces, sample_name_is("mutex_lock_wait"))
示例#8
0
文件: trace.py 项目: Samsara00/osv
def get_wait_profile(traces):
    return prof.get_duration_profile(traces, sample_name_is("sched_wait"))
示例#9
0
文件: trace.py 项目: janikokkonen/osv
def get_wait_profile(traces):
    return prof.get_duration_profile(traces, "sched_wait", "sched_wait_ret")