예제 #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")