Merged bug23467 into default

This commit is contained in:
Emile Joubert 2010-12-13 13:41:46 +00:00
commit 6aa033ccd2
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ i(proc_used, _State) -> erlang:system_info(process_count);
i(proc_total, _State) -> erlang:system_info(process_limit);
i(erlang_version, _State) -> list_to_binary(erlang:system_info(otp_release));
i(run_queue, _State) -> erlang:statistics(run_queue);
i(processors, _State) -> erlang:system_info(logical_processors_available);
i(processors, _State) -> erlang:system_info(logical_processors);
i(uptime, _State) ->
{Total, _} = erlang:statistics(wall_clock),
Total;