我正在使用 Fedora 18、2GB RAM 的 ARMv7-A 机器上运行应用程序。
应用程序终止:
130413 15:49:34 19344 Xrd: PhyConnection: Can't run reader thread: out of system resources. Critical error.
如果strace
是这样,我会看到新线程的堆栈分配失败:
mmap2(NULL, 8388608, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS|MAP_STACK, -1, 0) = -1 ENOMEM (Cannot allocate memory)
gettimeofday({1365921367, 588018}, NULL) = 0
gettid() = 6309
writev(2, [{"130414 02:36:07 6309 ", 21}, {"Xrd", 3}, {"", 0}, {": ", 2}, {"PhyConnection: Can't run reader "..., 80}, {"\n", 1}], 6130414 02:36:07 6309 Xrd: PhyConnection: Can't ru
n reader thread: out of system resources. Critical error.
) = 107
munmap(0x48172000, 292) = 0
munmap(0x48225000, 292) = 0
实际代码:
253 if (fReaderthreadhandler[i]->Run(this)) {
254 Error("PhyConnection",
255 "Can't run reader thread: out of system resources. Critical error.");
256 // HELP: what do we do here
257 exit(-1);
258 }
该应用程序有 300-350MB 的虚拟内存大小,约 250MB 是常驻内存大小。内存上限为 1.3GB。虚拟地址空间不受限制:
-t: cpu time (seconds) unlimited
-f: file size (blocks) unlimited
-d: data seg size (kbytes) unlimited
-s: stack size (kbytes) 8192
-c: core file size (blocks) 0
-m: resident set size (kbytes) unlimited
-u: processes 1024
-n: file descriptors 1024
-l: locked-in-memory size (kbytes) 64
-v: address space (kbytes) unlimited
-x: file locks unlimited
-i: pending signals 15870
-q: bytes in POSIX msg queues 819200
-e: max nice 0
-r: max rt priority 0
-N 15: unlimited
但它确实适用于 GDB!我还查看了 GDB 报告的限制,它们是相同的。因此 GDB 不会调整软限制,这将被继承。
概括:
- 我有足够的内存来运行应用程序。它甚至在 GDB 中也能正常工作。
- 它似乎没有达到任何资源限制。
- 在 GDB 中工作,但不在外部。
这里有什么可能出错的提示吗?