Lines Matching full:seconds
43 #define SECONDS 10 macro
104 /* The number of seconds to run for. */
105 int seconds = SECONDS; local
128 seconds = atoi(argv[++i]);
137 … fprintf(stderr, "Usage: fstime [-c|-r|-w] [-b <bufsize>] [-m <max_blocks>] [-t <seconds>]\n");
141 … fprintf(stderr, "Usage: fstime [-c|-r|-w] [-b <bufsize>] [-m <max_blocks>] [-t <seconds>]\n");
156 if (seconds < 1 || seconds > 3600) {
157 fprintf(stderr, "fstime: time must be in range %d-%d seconds\n",
211 * a few seconds of write and read to prime the pump.
222 status = w_test(seconds);
226 status = r_test(seconds);
231 status = c_test(seconds);
257 * Run the write test for the time given in seconds.
311 * Run the read test for the time given in seconds.
376 * Run the copy test for the time given in seconds.