1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
/* ==== bench_read.c ============================================================
* Copyright (c) 1993 by Chris Provenzano, proven@athena.mit.edu
*
* Description : Benchmark reads of /dev/null. Gives a good aprox. of
* syscall times.
*
* 1.00 93/08/01 proven
* -Started coding this file.
*/
#include <sys/types.h>
#include <sys/time.h>
#include <stdio.h>
#include <fcntl.h>
#include <errno.h>
#define OK 0
#define NOTOK -1
/* ==========================================================================
* usage();
*/
void usage(void)
{
printf("getopt [-d?] [-c count] [-s size]\n");
errno = 0;
}
main(int argc, char **argv)
{
struct timeval starttime, endtime;
int count = 1000000;
int debug = 0;
int size = 1;
int fd;
int i;
char word[8192];
/* Getopt variables. */
extern int optind, opterr;
extern char *optarg;
while ((word[0] = getopt(argc, argv, "s:c:d?")) != (char)EOF) {
switch (word[0]) {
case 'd':
debug++;
break;
case 'c':
count = atoi(optarg);
break;
case 's':
if ((size = atoi(optarg)) > 8192) {
size = 8192;
}
break;
case '?':
usage();
return(OK);
default:
usage();
return(NOTOK);
}
}
if ((fd = open("/netbsd", O_RDONLY)) < OK) {
printf("Error: open\n");
exit(0);
}
if (gettimeofday(&starttime, NULL)) {
printf("Error: gettimeofday\n");
exit(0);
}
for (i = 0; i < count; i++) {
if (read(fd, word, size) < OK) {
printf("Error: read\n");
exit(0);
}
}
if (gettimeofday(&endtime, NULL)) {
printf("Error: gettimeofday\n");
exit(0);
}
printf("%d reads of /netbsd took %d usecs.\n", count,
(endtime.tv_sec - starttime.tv_sec) * 1000000 +
(endtime.tv_usec - starttime.tv_usec));
}
|