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

timer misc

时间:2016-03-09 12:53:35      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:

1.  timer模块中有函数tc(), 用于度量函数执行所消耗的时间, tc/1, tc/2的相关源码如下:

tc(F) ->
    Before = os:timestamp(),
    Val = F(),
    After = os:timestamp(),
    {now_diff(After, Before), Val}.

 tc(F, A) ->
     Before = os:timestamp(),
     Val = apply(F, A),
     After = os:timestamp(),
     {now_diff(After, Before), Val}.

 

 now_diff({A2, B2, C2}, {A1, B1, C1}) ->
     ((A2-A1)*1000000 + B2-B1)*1000000 + C2-C1.

 

timer misc

标签:

原文地址:http://www.cnblogs.com/kamfon/p/5257610.html

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