Index: head/benchmarks/ubench/files/patch-timeout-cpubench.c =================================================================== --- head/benchmarks/ubench/files/patch-timeout-cpubench.c (nonexistent) +++ head/benchmarks/ubench/files/patch-timeout-cpubench.c (revision 265034) @@ -0,0 +1,45 @@ +--- cpubench.c.orig 2000-05-28 20:21:13.000000000 -0700 ++++ cpubench.c 2010-11-23 14:20:52.000000000 -0800 +@@ -114,7 +114,7 @@ + return i; + } + /*****************************************************************************/ +-int cpubench() ++int cpubench(int cpubench_time) + { + int sv[2],i; + int d=0; +@@ -126,7 +126,7 @@ + return 0; + } + cpu_score=0; +- alarm(CPUBENCH_TIME); ++ alarm(cpubench_time); + switch ( (i=sigsetjmp(env,0xffff)) ) + { + case 0: +@@ -136,7 +136,7 @@ + if ( child ) exit(0); + child_number=0; + close(sv[0]); +- dlt=(double )cpu_score*(double )itim; ++ dlt=(double )cpu_score * CPUBENCH_TIME * (double )itim / cpubench_time; + dlt=dlt/(double )CPUREFSCORE; + cpu_score=dlt; + fprintf(stdout,"Ubench CPU: %8d\n",cpu_score); +@@ -152,13 +152,13 @@ + itim=cpucalibrate(CPUREFTIME); + if ( ONEflag ) + { +- dlt=itim*(double )CPUBENCH_TIME/(double )CPUREFTIME/(double )CPUREFSCORE; ++ dlt=itim*(double )cpubench_time/(double )CPUREFTIME/(double )CPUREFSCORE; + cpu_score=dlt; + fprintf(stdout,"Ubench Single CPU: %8d (%.2fs)\n", + cpu_score,cpuload(itim)); + return cpu_score; + } +- alarm(CPUBENCH_TIME); ++ alarm(cpubench_time); + child_pid[child_number]=fork(); + if ( child_pid[child_number] == -1 ) + { Property changes on: head/benchmarks/ubench/files/patch-timeout-cpubench.c ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property Index: head/benchmarks/ubench/files/patch-timeout-diskbench.c =================================================================== --- head/benchmarks/ubench/files/patch-timeout-diskbench.c (nonexistent) +++ head/benchmarks/ubench/files/patch-timeout-diskbench.c (revision 265034) @@ -0,0 +1,45 @@ +--- diskbench.c.orig 2000-07-31 10:24:10.000000000 -0700 ++++ diskbench.c 2010-11-23 14:20:52.000000000 -0800 +@@ -103,7 +103,7 @@ + return i; + } + /*****************************************************************************/ +-int diskbench() ++int diskbench(int diskbench_time) + { + int sv[2],i; + int d=0; +@@ -115,7 +115,7 @@ + return 0; + } + cpu_score=0; +- alarm(DISKBENCH_TIME); ++ alarm(diskbench_time); + switch ( (i=sigsetjmp(env,0xffff)) ) + { + case 0: +@@ -124,7 +124,7 @@ + for (i=0;i