ChinaUnix.net
相关文章推荐:

luanewuserdata free

http://wwws.sun.com/software/download/products/403e4f51.html

by mmmmn - Solaris - 2004-05-11 19:08:57 阅读(770) 回复(10)

相关讨论

struct _str_ { int a; struct _str_ *next; } *p; p=(struct _str_ *)malloc(sizeof(struct _str_)); p->a = 10; printf("1.a value is %d\n",p->a); free(p); printf("2.a value is %d\n",p->a); 输出的结果: 1.a value is 10; 2.a value is 10; 问题: <1>.当然,这时p是个野指针,free之后的,它指向垃圾数据,这个垃圾数据值可能是10,但为什么无论多少次运行程序,这个垃圾数据的值仍然都是10呢? <2>另外,...

by chenzhanyiczy - C/C++ - 2008-08-03 18:27:01 阅读(3071) 回复(26)

There are more than 22,000 users on one free BSD 4.10. Nothing wrong with it as long as you know it well.

by flighttop - BSD - 2006-01-14 15:13:45 阅读(1048) 回复(5)

数据流走san,控制数据走lan 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/162/showart_64715.html

by vovi - 存储文档中心 - 2006-01-01 14:45:22 阅读(903) 回复(0)