- 论坛徽章:
- 208
|
liuzhuan23 发表于 2015-11-27 09:50 ![]()
哈哈哈哈,换了机器也是这样,我就只能理解为,这个地方,free确实有一些考虑!
我在ubuntu 13.10上测试,4096和1024都是被清0了的
你小子不是在逗大家玩吧,小心被玩坏啊
[code]
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <fcntl.h>
int dumpfile(char *file,char *buf,int len)
{
int ret=0;
int fd=-1;
if(!file)
return -1;
if(!buf)
return -2;
if(len<1)
return -3;
fd=open(file,O_CREAT|O_WRONLY|O_TRUNC,0600);
if(fd==-1)
return -10;
while(len>0)
{
ret=write(fd,buf,len);
if(ret<1)
break;
buf+=ret;
len-=ret;
}
close(fd);
return 0;
}
int m_test()
{
int size=4096;
char *p=(char *)malloc(size);
if(!p)
return -10;
//memset(p,0xee,size);
strcpy(p,"hello" ;
printf("String is %s\n",p);
free(p);
dumpfile("a.img",p,size);
return 0;
}
|
|