*** File /home/staff/teachers/lichota/tmp/pg/tools/simple.c:
                
                void nothing()
    39999998 -> {
                  sleep(0);
                }
                
                int g;
                
                void nothing2()
    29999999 -> {
                  sleep(0);
                }
                
                int main(int argc, char **argv)
           1 -> {
                  int count = 10000000;
                  int i;
                  for (i=1; i < count; ++i)
                  {
                    nothing();
                  }
                  for (i=1; i < count * 3; ++i)
                  {
                    nothing();
                    nothing2();
                  }
                  return 0;
           1 -> }


Top 10 Lines:

     Line      Count

        3   39999998
       10   29999999
       15          1
       28          1

Execution Summary:

        4   Executable lines in this file
        4   Lines executed
   100.00   Percent of the file executed

 69999999   Total number of line executions
17499999.75   Average executions per line