如题,最好提供函数或代码,感谢!
3条回答 默认 最新
- 「已注销」 2021-04-01 17:20关注
#include <stdio.h> #include <sys/mman.h> #include <sys/stat.h> #include <fcntl.h> #define POS ((void*)0x7ffff7dff000) int main() { int fd ,ret ,*pos; if( -1 == (fd = shm_open("/test",O_RDWR|O_CREAT,0777))) { return 0; } if(-1 == ftruncate(fd,1024)) return 0; if(MAP_FAILED == (pos = mmap(POS,1024,PROT_READ|PROT_WRITE,MAP_SHARED|MAP_FIXED,fd,0))) { return 0; } printf("%d\n",*pos); *pos = 4; printf("%d\n",*pos); while(1); return 0; }
编译 gcc file.c -lrt
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报