~ubuntu-branches/debian/experimental/apache2/experimental

« back to all changes in this revision

Viewing changes to srclib/apr/test/sockperf.c

  • Committer: Bazaar Package Importer
  • Author(s): Stefan Fritsch
  • Date: 2008-12-14 09:34:24 UTC
  • mto: (15.1.2 sid) (26.1.2 squeeze)
  • mto: This revision was merged to the branch mainline in revision 16.
  • Revision ID: james.westby@ubuntu.com-20081214093424-hr8jye8sld3m41q7
Tags: upstream-2.2.11
ImportĀ upstreamĀ versionĀ 2.2.11

Show diffs side-by-side

added added

removed removed

Lines of Context:
231
231
        printf("%10d byte block:\n", results[i].size);
232
232
        printf("\t%2d iterations : ", results[i].iters);
233
233
        for (j = 0; j < results[i].iters; j++) {
234
 
            printf("%6Ld ", results[i].msecs[j]);
 
234
            printf("%6" APR_TIME_T_FMT, results[i].msecs[j]);
235
235
            totTime += results[i].msecs[j];
236
236
        }
237
237
        printf("<\n");
238
 
        printf("\t  Average: %6Ld\n", totTime / results[i].iters);
 
238
        printf("\t  Average: %6" APR_TIME_T_FMT "\n",
 
239
               totTime / results[i].iters);
239
240
    }
240
241
 
241
242
    return 0;