这个问题在这里已经有了答案:
8年前关闭。
我在我的电脑上运行以下程序:
#include <stdio.h>
#include <stdlib.h>
#define ONE_GIGABYTE 1024*1024*1024
int main(void) {
int ctr=0;
for (;;) {
char *ptr = (char*)malloc(ONE_GIGABYTE*sizeof(char));
if (ptr == 0)
return -1;
ctr++;
printf("%d\n", ctr);
}
}
flyrev@stargazer:~/weirdstuff$ ulimit -a
core file size (blocks, -c) 0
data seg size (kbytes, -d) unlimited
scheduling priority (-e) 0
file size (blocks, -f) unlimited
pending signals (-i) 128957
max locked memory (kbytes, -l) 64
max memory size (kbytes, -m) unlimited
open files (-n) 1024
pipe size (512 bytes, -p) 8
POSIX message queues (bytes, -q) 819200
real-time priority (-r) 0
stack size (kbytes, -s) 8192
cpu time (seconds, -t) unlimited
max user processes (-u) 128957
virtual memory (kbytes, -v) unlimited
file locks (-x) unlimited
flyrev@stargazer:~/weirdstuff$ free -g
total used free shared buffers cached
Mem: 15 6 8 0 0 4
-/+ buffers/cache: 2 13
Swap: 9 0 9
flyrev@stargazer:~/weirdstuff$ clang malloc-program.c
flyrev@stargazer:~/weirdstuff$ ./a.out
1
2
flyrev@stargazer:~/weirdstuff$
这里发生了什么?
最佳答案
您没有耗尽内存,而是在 32 位系统上运行,因此地址空间不足,您可能合理地期望能够在 32 位系统上分配 4Gb,因为:2^32 = 4Gb
但是,在大多数操作系统上,至少有 50% 的可用地址空间实际上是保留供内核使用的,因此您只能拥有其中的一半。
在 Linux 上,通过切换到使用 PAE kernel ,可以在 32 位模式下使用明显超过 4Gb 的空间。如果您需要,许多 Linux 发行版都将 PAE 内核作为包提供。
编辑 :正如迪特里希所说:PAE 允许使用更多内存,但仍然只给你 4 GiB 的地址空间。因此,对于 16 GiB,您可以拥有 8 个程序,每个程序具有 2 GiB,但您仍然不能拥有一个超过 2 GiB 的程序
关于c - 为什么我只能在具有 16 GB RAM 的计算机上分配 2 GB?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12989630/