Difference for common/time.c from version 1.15 to 1.16


version 1.15 version 1.16
Line 1
 
Line 1
 /*  /*
  * static char *rcsid_time_c =   * static char *rcsid_time_c =
  *    "$Id: time.c,v 1.15 2006/05/18 05:27:43 mwedel Exp $";   *    "$Id: time.c,v 1.16 2006/06/05 06:28:56 mwedel Exp $";
  */   */
   
 /*  /*
     CrossFire, A Multiplayer game for X-windows      CrossFire, A Multiplayer game for X-windows
   
     Copyright (C) 2002 Mark Wedel & Crossfire Development Team      Copyright (C) 2006 Mark Wedel & Crossfire Development Team
     Copyright (C) 1992 Frank Tore Johansen      Copyright (C) 1992 Frank Tore Johansen
   
     This program is free software; you can redistribute it and/or modify      This program is free software; you can redistribute it and/or modify
Line 39
 
Line 39
 /*  /*
  * Gloabal variables:   * Gloabal variables:
  */   */
 long max_time = MAX_TIME;  uint32 max_time = MAX_TIME;
 struct timeval last_time;  struct timeval last_time;
   
 #define PBUFLEN 100  #define PBUFLEN 100
 long process_utime_save[PBUFLEN];  uint32 process_utime_save[PBUFLEN];
 long psaveind;  uint32 psaveind;
 long process_max_utime = 0;  uint32 process_max_utime = 0;
 long process_min_utime = 999999999;  uint32 process_min_utime = 999999999;
 long process_tot_mtime;  uint32 process_tot_mtime;
 uint32 pticks;  uint32 pticks;
 long process_utime_long_count;  uint32 process_utime_long_count;
   
 const char *season_name[] =  const char *season_name[] =
 {  {
Line 284
 
Line 284
     return;      return;
   
   new_draw_info (NDI_UNIQUE, 0,op,"Total time:");    new_draw_info (NDI_UNIQUE, 0,op,"Total time:");
   sprintf(errmsg,"ticks=%ld  time=%ld.%2ld",    sprintf(errmsg,"ticks=%d  time=%d.%2d",
           pticks, process_tot_mtime/1000, process_tot_mtime%1000);            pticks, process_tot_mtime/1000, process_tot_mtime%1000);
   new_draw_info (NDI_UNIQUE, 0,op,errmsg);    new_draw_info (NDI_UNIQUE, 0,op,errmsg);
   sprintf(errmsg,"avg time=%ldms  max time=%ldms  min time=%ldms",    sprintf(errmsg,"avg time=%dms  max time=%dms  min time=%dms",
           process_tot_mtime/pticks, process_max_utime/1000,            process_tot_mtime/pticks, process_max_utime/1000,
           process_min_utime/1000);            process_min_utime/1000);
   new_draw_info (NDI_UNIQUE, 0,op,errmsg);    new_draw_info (NDI_UNIQUE, 0,op,errmsg);
   sprintf(errmsg,"ticks longer than max time (%ldms) = %ld (%ld%%)",    sprintf(errmsg,"ticks longer than max time (%dms) = %d (%d%%)",
           max_time/1000,            max_time/1000,
           process_utime_long_count, 100*process_utime_long_count/pticks);            process_utime_long_count, 100*process_utime_long_count/pticks);
   new_draw_info (NDI_UNIQUE, 0,op,errmsg);    new_draw_info (NDI_UNIQUE, 0,op,errmsg);
   
   sprintf(errmsg,"Time last %ld ticks:", pticks > PBUFLEN ? PBUFLEN : pticks);    sprintf(errmsg,"Time last %d ticks:", pticks > PBUFLEN ? PBUFLEN : pticks);
   new_draw_info (NDI_UNIQUE, 0,op,errmsg);    new_draw_info (NDI_UNIQUE, 0,op,errmsg);
   
   for (i = 0; i < (pticks > PBUFLEN ? PBUFLEN : pticks); i++) {    for (i = 0; i < (pticks > PBUFLEN ? PBUFLEN : pticks); i++) {
Line 306
 
Line 306
     if (process_utime_save[i] > max_time) long_count++;      if (process_utime_save[i] > max_time) long_count++;
   }    }
   
   sprintf(errmsg,"avg time=%ldms  max time=%dms  min time=%dms",    sprintf(errmsg,"avg time=%dms  max time=%dms  min time=%dms",
           tot/(pticks > PBUFLEN ? PBUFLEN : pticks)/1000, maxt/1000,            tot/(pticks > PBUFLEN ? PBUFLEN : pticks)/1000, maxt/1000,
           mint/1000);            mint/1000);
   new_draw_info (NDI_UNIQUE, 0,op,errmsg);    new_draw_info (NDI_UNIQUE, 0,op,errmsg);
   sprintf(errmsg,"ticks longer than max time (%ldms) = %d (%ld%%)",    sprintf(errmsg,"ticks longer than max time (%dms) = %d (%d%%)",
           max_time/1000, long_count,            max_time/1000, long_count,
           100*long_count/(pticks > PBUFLEN ? PBUFLEN : pticks));            100*long_count/(pticks > PBUFLEN ? PBUFLEN : pticks));
   new_draw_info (NDI_UNIQUE, 0,op,errmsg);    new_draw_info (NDI_UNIQUE, 0,op,errmsg);


Legend:
line(s) removed in v.1.15 
line(s) changed
 line(s) added in v.1.16

File made using version 1.98 of cvs2html by leaf at 2011-07-21 17:18