under linux :
#free -m
total used free shared buffers cached
Mem: 1995 1460 534 0 68 432
-/+ buffers/cache: 959 1035
Swap: 2055 743 1311
# cat /proc/sys/vm/overcommit_memory
0
#cat /proc/sys/vm/overcommit_ratio
50
test code 1:
#define PER_PAGE_SIZE 4096
#define MMAP(fd,offset) mmap (NULL,PER_PAGE_SIZE,PROT_READ|PROT_WRITE,MAP_SHARED|MAP_NORESERVE,fd,offset)
int main(){
int j = 0;
int fd = open("dat.tmp",O_RDWR);
for(int i = 131071 ; i >= 0; i--){
++j;
void* r = MMAP(fd,i*4096);
if(r == MAP_FAILED){
printf("%d,%m\n",j);
break;
}
}
cout << "done " << j << endl;
sleep(5);
}
############## error message : # ./a.out 65513,Cannot allocate memory done 65513 ... #################
test code 2:
#define PER_PAGE_SIZE 4096
#define MMAP(fd,offset) mmap (NULL,PER_PAGE_SIZE,PROT_READ|PROT_WRITE,MAP_SHARED|MAP_NORESERVE,fd,offset)
int main(){
int j = 0;
int fd = open("dat.tmp",O_RDWR);
for(int i = 0 ; i <= 131071; i++){
++j;
void* r = MMAP(fd,i*4096);
if(r == MAP_FAILED){
printf("%d,%m\n",j);
break;
}
}
cout << "done " << j << endl;
sleep(5);
}
This works, so,why??????????
uname -aon your system? – Omnifarious Feb 17 '11 at 14:17