7.t

来自「xen 3.2.2 源码」· T 代码 · 共 28 行

T
28
字号
/* 7.t- Write overlapping the file size rlimit boundary: should be a short  write. (7.t)- Write at the file size rlimit boundary: should give EFBIG.  (I think  the spec requires that you do NOT deliver SIGXFSZ in this case, where  you would do so for sync IO.) (7.t)- Special case: a write of zero bytes at or beyond the file size rlimit  boundary must return success. (7.t)*/#include <sys/resource.h>void SET_RLIMIT(long long limit){	struct rlimit rlim;	int res;	rlim.rlim_cur = limit;			assert(rlim.rlim_cur == limit);	rlim.rlim_max = limit;			assert(rlim.rlim_max == limit);	res = setrlimit(RLIMIT_FSIZE, &rlim);	assert(res == 0);}#define LIMIT	8192#define FILENAME	"testdir/rwfile"#include "common-7-8.h"

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?