- 论坛徽章:
- 0
|
写了一个程序,按照APUE上的mmap的例子写的
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/mman.h>
#include <fcntl.h>
#ifndef MAP_FILE
#define MAP_FILE 0
#endif
int main(int argc, char* argv[]) {
int fdin, fdout;
char *src, *dst;
struct stat statbuf;
if( argc != 3 ) {
printf("usage: test <fromfile> <tofile>\n");
exit(-1);
}
if( (fdin = open(argv[1], O_RDONLY)) < 0 ) {
printf("cannot open %s for read\n", argv[1]);
exit(-1);
}
if( (fdout = open(argv[2], O_RDWR|O_CREAT|O_TRUNC, S_IRUSR|
S_IWUSR|S_IRGRP|S_IROTH)) < 0 ) {
printf("cannot open %s for write\n", argv[2]);
exit(-1);
}
if( fstat(fdin, &statbuf) < 0 ) {
printf("fstat error\n");
exit(-1);
}
if( lseek(fdout, statbuf.st_size-1, SEEK_SET) == -1 ) {
printf("lseek error\n");
exit(-1);
}
if(write(fdout, "", 1) != 1) {
printf("write error\n");
exit(-1);
}
if( (src = mmap(0, statbuf.st_size, PROT_READ, MAP_FILE|MAP_SHARED, fdin,0)) == (caddr_t)-1) {
printf("map error for input\n");
exit(-1);
}
close(fdin);
if( (dst = mmap(0, statbuf.st_size, PROT_READ|PROT_WRITE, MAP_FILE|MAP_SHARED, fdout, 0)) == (caddr_t)-1) {
printf("map error for output\n");
exit(-1);
}
close(fdout);
memcpy(dst, src, statbuf.st_size);
exit(0);
}
测试了一下:
time a.out src.dat dst1.dat
real 0m3.76s
user 0m0.01s
sys 0m0.11s
time cp src.dat dst2.dat
real 0m0.43s
user 0m0.00s
sys 0m0.05s
为什么效率会相差这么大,cp中用了什么别的方法了吗? |
|