You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

43 lines
974 B

/*
* 测试成功时输出:
* " Hello, mmap success."
* 测试失败时输出:
* "mmap error."
*/
#include <unistd.h>
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <sys/mman.h>
#include <sys/types.h>
#include <sys/stat.h>
static struct stat kst;
void test_mmap(void){
char *array;
const char *str = " Hello, mmap success.";
int fd;
fd = open("test_mmap.txt", O_RDWR | O_CREAT, S_IRUSR|S_IWUSR);
write(fd, str, strlen(str));
fstat(fd, &kst);
printf("file len: %d\n", (int)kst.st_size);
array = mmap(NULL, kst.st_size, PROT_WRITE | PROT_READ, MAP_FILE | MAP_SHARED, fd, 0);
printf("mmap addr: %x\n", (unsigned int)array);
if (array == MAP_FAILED) {
printf("mmap error.\n");
}else{
printf("mmap content: %s\n", array);
munmap(array, kst.st_size);
}
close(fd);
}
int main(void){
test_mmap();
return 0;
}