4 * $DragonFly: src/test/sysperf/pipe2.c,v 1.5 2004/04/29 16:05:21 dillon Exp $
8 #include <sys/resource.h>
10 #define PAGE_SIZE 4096
11 #define PAGE_MASK (PAGE_SIZE - 1)
14 main(int ac, char **av)
26 char *msg = "datarate";
29 fprintf(stderr, "%s blocksize[k,m] [pipe_writer_pri] [msg]\n", av[0]);
32 bytes = strtol(av[1], &ptr, 0);
33 if (*ptr == 'k' || *ptr == 'K') {
35 } else if (*ptr == 'm' || *ptr == 'M') {
38 fprintf(stderr, "Illegal numerical suffix: %s\n", ptr);
42 fprintf(stderr, "I can't handle %d sized buffers\n", bytes);
46 ppri = strtol(av[2], NULL, 0);
50 buf = mmap(NULL, bytes * 2 + PAGE_SIZE, PROT_READ|PROT_WRITE, MAP_SHARED|MAP_ANON, -1, 0);
51 if (buf == MAP_FAILED) {
52 perror("mmap/buffer");
56 bzero(buf, bytes * 2 + PAGE_SIZE);
58 printf("tests one-way pipe using direct-write buffer\n");
71 buf += (bytes + PAGE_MASK) & ~PAGE_MASK;
74 n = read(fds[1], buf + i, bytes - i);
88 if (setpriority(PRIO_PROCESS, getpid(), ppri) < 0) {
89 perror("setpriority");
96 * Figure out how many loops it takes for 1 second's worth.
100 if (write(fds[0], buf, bytes) != bytes) {
104 if ((j & 31) == 0 && stop_timing(0, NULL))
108 usleep(1000000 / 10);
111 for (j = loops; j; --j) {
112 if (write(fds[0], buf, bytes) != bytes) {
118 while(wait(NULL) >= 0)
120 stop_timing(loops, "full duplex pipe / %dK bufs:", bytes / 1024);
121 printf("%s: blkSize %d %5.2f MBytes/sec\n",
124 (double)loops * bytes * 1000000.0 /
125 (1024.0 * 1024.0 * get_timing()));