當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


erlang statistics(Item :: runtime)用法及代碼示例


statistics(Item :: runtime) ->
              {Total_Run_Time, Time_Since_Last_Call}
類型:
Total_Run_Time = Time_Since_Last_Call = integer() >= 0

返回有關運行時的信息(以毫秒為單位)。

這是 Erlang 運行時係統中所有線程的運行時總和,因此可能大於掛鍾時間。

警告

由於所使用的操作係統提供的底層函數的限製,該值可能會回繞。

例子:

> statistics(runtime).
{1690,1620}

相關用法


注:本文由純淨天空篩選整理自erlang.org大神的英文原創作品 statistics(Item :: runtime) -> {Total_Run_Time, Time_Since_Last_Call}。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。