首页 > 其他 > 详细

C 语言 mmap

时间:2014-08-12 16:29:04      阅读:302      评论:0      收藏:0      [点我收藏+]
/*
*@author cody
*@date 2014-08-12
*@description 
*/
/*
#include <sys/mman.h>
void *mmap(void *addr,size_t len,int prot,int flag,int filedes,off_t off);
int munmap(void *addr,size_t len);
*/
#include <stdlib.h>
#include <sys/mman.h>
#include <fcntl.h>

void MmapFile(){
    int *p;
    int fd = open("hello",O_RDWR);
    if(fd <  0){
        perror("open hello");
        exit(1);
    }

    p = mmap(NULL,6,PROT_WRITE,MAP_SHARED,fd,0);
    if(p == MAP_FAILED){
        perror("mmap");
    }

    close(fd);
    p[0] = 0x30313233;
    munmap(p,6);

}


int main(int argc, char const *argv[])
{
    MmapFile();
    return 0;
}

 

C 语言 mmap,布布扣,bubuko.com

C 语言 mmap

原文:http://www.cnblogs.com/cody1988/p/3907280.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!