Help for this page

Select Code to Download


  1. or download this
    #
    # calculate the average, avoiding any division by zero traps
    #
    my $avg_cpu_load = $total_cpu_load ? $total_cpu_load / $active_pid_num
    + : 0 ;
    
  2. or download this
    my $avg_cpu_load = $active_pid_num ? $total_cpu_load / $active_pid_num
    + : 0;