求高手解答!这段代码为什么编译会段错误?
#include<unistd.h>#include<sys/mman.h>#include<stdlib.h>#include<stdio.h>intmain(){in...
#include <unistd.h>
#include <sys/mman.h>
#include <stdlib.h>
#include <stdio.h>
int main()
{
int *p=mmap(
NULL,
getpagesize(),
PROT_READ,
MAP_ANONYMOUS|MAP_SHARED,
0,0);
*p=20;
*(p+1)=30;
*(p+2)=40;
printf("%d\n",*p);
return 0;
}
运行后显示:Segmentation fault (core dumped)。
这是为什么?? 展开
#include <sys/mman.h>
#include <stdlib.h>
#include <stdio.h>
int main()
{
int *p=mmap(
NULL,
getpagesize(),
PROT_READ,
MAP_ANONYMOUS|MAP_SHARED,
0,0);
*p=20;
*(p+1)=30;
*(p+2)=40;
printf("%d\n",*p);
return 0;
}
运行后显示:Segmentation fault (core dumped)。
这是为什么?? 展开
1个回答
展开全部
PROT_WRITE
#include <unistd.h>
#include <sys/mman.h>
#include <stdlib.h>
#include <stdio.h>
int main()
{
int *p=mmap(
NULL,
getpagesize(),
PROT_READ|PROT_WRITE,
MAP_ANONYMOUS|MAP_SHARED,
0,0);
*p=20;
*(p+1)=30;
*(p+2)=40;
printf("%d\n",*p);
return 0;
}
必须要加一个PROT_WRITE。页可以被写入。否则*p=20;会报段错误。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询