mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-15 22:01:27 +00:00
tracer/rusage: fix format string args
The format string contains a process id, but we did not provice one. This caused us to log garbage since all args got shifted.
This commit is contained in:
parent
a195e47633
commit
60f088026a
1 changed files with 3 additions and 3 deletions
|
@ -248,8 +248,8 @@ do_stats (GstTracer * obj, guint64 ts)
|
|||
G_UNLOCK (_proc);
|
||||
cur_cpuload = (guint) gst_util_uint64_scale (dtproc / num_cpus,
|
||||
G_GINT64_CONSTANT (1000), dts);
|
||||
gst_tracer_record_log (tr_proc, ts, MIN (avg_cpuload, 1000),
|
||||
MIN (cur_cpuload, 1000), tproc);
|
||||
gst_tracer_record_log (tr_proc, (guint64) getpid (), ts,
|
||||
MIN (avg_cpuload, 1000), MIN (cur_cpuload, 1000), tproc);
|
||||
/* *INDENT-ON* */
|
||||
}
|
||||
|
||||
|
@ -315,7 +315,7 @@ gst_rusage_tracer_class_init (GstRUsageTracerClass * klass)
|
|||
NULL),
|
||||
NULL);
|
||||
tr_proc = gst_tracer_record_new ("proc-rusage.class",
|
||||
"thread-id", GST_TYPE_STRUCTURE, gst_structure_new ("scope",
|
||||
"process-id", GST_TYPE_STRUCTURE, gst_structure_new ("scope",
|
||||
"type", G_TYPE_GTYPE, G_TYPE_UINT64,
|
||||
"related-to", GST_TYPE_TRACER_VALUE_SCOPE, GST_TRACER_VALUE_SCOPE_PROCESS,
|
||||
NULL),
|
||||
|
|
Loading…
Reference in a new issue