- fflush() standard output before fork()ing.

- Remove redundant 'break'.
This commit is contained in:
Pawel Jakub Dawidek 2004-08-20 12:49:09 +00:00
parent e19f32a461
commit c14401c00f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=134078

View File

@ -358,12 +358,13 @@ raidtest_test(int argc, char *argv[])
break;
}
}
close(fdf);
printf("Read %ju requests from %s.\n", nreqs, file);
printf("Number of READ requests: %ju.\n", nrreqs);
printf("Number of WRITE requests: %ju.\n", nwreqs);
printf("Number of bytes to transmit: %ju.\n", nbytes);
printf("Number of processes: %u.\n", nprocs);
close(fdf);
fflush(stdout);
reqs_per_proc = nreqs / nprocs;
nstart = 0;
gettimeofday(&tstart, NULL);
@ -376,7 +377,6 @@ raidtest_test(int argc, char *argv[])
free(iorqs);
close(fdd);
exit(EXIT_SUCCESS);
break;
case -1:
fprintf(stderr, "Cannot create process %u: %s\n",
(unsigned)i, strerror(errno));