之前发过一篇博客**fork函数详解**
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<unistd.h>
void main()
{
char str[6]="hello";
pid_t pid=fork();
if(pid==0)
{
str[0]='b';
printf("子进程中str=%s\n",str);
printf("子进程中str指向的首地址:%x\n",(unsigned int)str);
}
else
{
sleep(1);
printf("父进程中str=%s\n",str);
printf("父进程中str指向的首地址:%x\n",(unsigned int)str);
}
}
输出:
子进程中str=bello
子进程中str指向的首地址:bfdbfc06
父进程中str=hello
父进程中str指向的首地址:bfdbfc06
- 首先讲一下物理地址和逻辑地址(或虚拟地址)的概念。
- 从逻辑地址到物理地址的映射称为地址重定向。分为两种:
- 静态重定向:在程序装入主存时已经完成了逻辑地址到物理地址和变换,在程序执行期间不会再发生改变。
- 动态重定向:程序执行期间完成,其实现依赖于硬件地址变换机构,如基址寄存器。