Re: [PATCH v5 10/11] trace: add trace_performance facility to debug performance issues
From: Junio C Hamano <hidden>
Date: 2016-06-15 23:01:40
Karsten Blees [off-list ref] writes:
Right, it makes no sense for trace_performance(), and for trace_performance_since() only if followed by another 'measured' code section. In that special case, I think it wouldn't hurt if you had to write: uint64_t start = getnanotime(); /* first code section to measure */ trace_performance_since(start, "first foobar"); start = getnanotime(); /* second code section to measure */ trace_performance_since(start, "second foobar"); So I guess I'll drop the return value (and the second example, which is then redundant to the first).
That also sounds OK to me.
quoted
quoted
+static void trace_performance_vfl(const char *file, int line, + uint64_t nanos, const char *format, + va_list ap) +{Just being curious, but what does "v" stand for?trace_performance_vfl(, va_list) vs. trace_performance_fl(, ...) Will change to trace_performance_vprintf_fl()
Ah, OK. The name with 'vprintf' in it does sound better. Thanks. -- -- *** Please reply-to-all at all times *** *** (do not pretend to know who is subscribed and who is not) *** *** Please avoid top-posting. *** The msysGit Wiki is here: https://github.com/msysgit/msysgit/wiki - Github accounts are free. You received this message because you are subscribed to the Google Groups "msysGit" group. To post to this group, send email to msysgit@googlegroups.com To unsubscribe from this group, send email to msysgit+unsubscribe@googlegroups.com For more options, and view previous threads, visit this group at http://groups.google.com/group/msysgit?hl=en_US?hl=en --- You received this message because you are subscribed to the Google Groups "msysGit" group. To unsubscribe from this group and stop receiving emails from it, send an email to msysgit+unsubscribe@googlegroups.com. For more options, visit https://groups.google.com/d/optout.