11.t
来自「xen 3.2.2 源码」· T 代码 · 共 40 行
T
40 行
/* 11.t - uses testdir/rwfile- repeated read / write of same page (to check accounting) (11.t)*/#include "aio_setup.h"#include <sys/time.h>#include <sys/resource.h>#include <unistd.h>int test_main(void){#define COUNT 1000000#define SIZE 256 char *buf; int rwfd; int status = 0; int i; rwfd = open("testdir/rwfile", O_RDWR|O_CREAT|O_TRUNC, 0600); assert(rwfd != -1); buf = malloc(SIZE); assert(buf != NULL); memset(buf, 0, SIZE); for (i=0; i<COUNT; i++) { status |= attempt_rw(rwfd, buf, SIZE, 0, WRITE_SILENT, SIZE); if (status) break; } printf("completed %d out of %d writes\n", i, COUNT); for (i=0; i<COUNT; i++) { status |= attempt_rw(rwfd, buf, SIZE, 0, READ_SILENT, SIZE); if (status) break; } printf("completed %d out of %d reads\n", i, COUNT); return status;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?