免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1664 | 回复: 4
打印 上一主题 下一主题

这个多进程的常识性问题我很费解,大牛解释下.... [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-09-12 01:10 |只看该作者 |倒序浏览
1 #include <stdio.h>
&nbsp;&nbsp;2 #include <stdlib.h>
&nbsp;&nbsp;3 #include <unistd.h>
&nbsp;&nbsp;4
&nbsp;&nbsp;5 int main(int argc, char *argv[])
&nbsp;&nbsp;6 {
&nbsp;&nbsp;7     char *p;
&nbsp;&nbsp;8     pid_t pid;
&nbsp;&nbsp;9
&nbsp;10     p = (char *)malloc(100);
&nbsp;11     if ( (pid = fork()) < 0 ) {
&nbsp;12         printf("fork is error!\n");
&nbsp;13     }
&nbsp;14     else if ( pid == 0 ) {
&nbsp;15         printf("C P = %p\n", p);
&nbsp;16         free(p);
&nbsp;17     }
&nbsp;18     else {
&nbsp;19         printf("P P = %p\n", p);
&nbsp;20         free(p);
&nbsp;21     }
&nbsp;22     return 0;
&nbsp;23 }


结果是:
-bash-3.2$ gcc -o test6 test6.c   
-bash-3.2$ ./test6
P P = 0x8059f48
C P = 0x8059f48

我想请问的是FORK复制进程的堆栈,这个堆到底怎么解释呢?这个看来是共享的堆啊。而且结果看P都指向同一个堆地址,父子进程都FREE了也没见报错。这个堆的内存分布到底是怎么样的啊,疑惑中...........

我也是突然想起这个问题来。不知道我表述的清楚没

论坛徽章:
1
荣誉版主
日期:2011-11-23 16:44:17
2 [报告]
发表于 2009-09-12 01:31 |只看该作者
楼主知道copy-write吗?
还有即使是同一块空间,你free 2次,一定会报错吗?

论坛徽章:
0
3 [报告]
发表于 2009-09-12 01:32 |只看该作者
  1 #include <stdio.h>
&nbsp;&nbsp;2 #include <stdlib.h>
&nbsp;&nbsp;3 #include <unistd.h>
&nbsp;&nbsp;4 #include <string.h>
&nbsp;&nbsp;5
&nbsp;&nbsp;6 int main(int argc, char *argv[])
&nbsp;&nbsp;7 {
&nbsp;&nbsp;8     char *p;
&nbsp;&nbsp;9     char str[100];
&nbsp;10     pid_t pid;
&nbsp;11
&nbsp;12     p = (char *)malloc(100);
&nbsp;13     if ( (pid = fork()) < 0 ) {
&nbsp;14         printf("fork is error!\n");
&nbsp;15     }
&nbsp;16     else if ( pid == 0 ) {
&nbsp;17         printf("C P = %p\n", p);
&nbsp;18         free(p);
&nbsp;19         printf("C Str = %p\n", str);
&nbsp;20         strcpy(str, "This is C");
&nbsp;21         printf("C Str = %p\n", str);
&nbsp;22         printf("C Str = %s\n", str);
&nbsp;23     }
&nbsp;24     else {
&nbsp;25         printf("P P = %p\n", p);
&nbsp;26         free(p);
&nbsp;27         printf("P Str = %p\n", str);
&nbsp;28         strcpy(str, "This is P");
&nbsp;29         printf("P Str = %p\n", str);
&nbsp;30         printf("P Str = %s\n", str);
&nbsp;31     }
&nbsp;32     return 0;
&nbsp;33 }


又写了个,结果是:
-bash-3.2$ gcc -o test6 test6.c
-bash-3.2$ ./test6            
C P = 0x8058860
C Str = 0x5d1556f8
C Str = 0x5d1556f8
C Str = This is C
P P = 0x8058860
P Str = 0x5d1556f8
P Str = 0x5d1556f8
P Str = This is P
-bash-3.2$

我想了下,既然是父子进程,所谓进程都是由独立空间的,虽然指向的地址相同,但是对于父子进程来说都是不透明独立私有的。这样来说就是解释了书上说的复制堆栈了。之前没想明白这点,我以为是写时复制造成了父子进程指向的堆空间地址相同呢,呵呵。。。。

原以为自己很明白这些东西了,突然范个混,仔细一深究,发现里面还很多东西需要探索的,呵呵.只是探讨,大牛飘过

论坛徽章:
0
4 [报告]
发表于 2009-09-12 01:36 |只看该作者
原帖由 lenovo 于 2009-9-12 01:31 发表
楼主知道copy-write吗?
还有即使是同一块空间,你free 2次,一定会报错吗?



才看到您的回复,我在下面已经回了一贴,好像我说的这个问题不关写时复制的问题的。
我已经在我的环境下测试了,在单进程的情况下free两次是报错的。
只是跟您探讨下,望指教

论坛徽章:
0
5 [报告]
发表于 2009-09-12 14:26 |只看该作者
Virtual memory lets the process allocate and manage memory as if it alone owned all the memory in the system.
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP