码迷,mamicode.com
首页 > 其他好文 > 详细

学习堆栈大小限制

时间:2018-07-24 10:20:26      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:message   stack   重要   process   eal   use   second   获得   nta   

堆栈大小在运行程序时起着重要作用

1. 程序中堆栈的最大大小是多少?

在Linux上,可以使用ulimit命令获得允许的最大堆栈大小。

[root@web11 c]# 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) 3823
max locked memory?????? (kbytes, -l) 64
max memory size???????? (kbytes, -m) unlimited
open files????????????????????? (-n) 1024000
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) 3823
virtual memory????????? (kbytes, -v) unlimited
file locks????????????????????? (-x) unlimited

On my Linux running in vm the value is 8MB.

2. 让我们来看一下堆栈大小对程序的影响

[root@web11 c]# vim test_stack.c
#include <stdio.h>

int test()
{
?? int a[2097151];

? printf("Hello world");
}

int main()
{
?? test();
?? return 0;
}

[root@web11 c]# ./test_stack

Segmentation fault
我们看到报错信息了,那是因为达到了系统堆栈的限制,被系统kill了。
程序中我们定义了一个数组 int a[2097151],由于是int类型,一个int类型占4个字节。2097151*4=8388604;8388604>8M,达到系统上限了
,所以会报错。
[root@web11 c]# ulimit -s unlimited

[root@web11 c]# ulimit -s
unlimited

再次运行程序

[root@web11 c]# ./test_stack??????
Hello world

程序运行成功,没有报错信息。




学习堆栈大小限制

标签:message   stack   重要   process   eal   use   second   获得   nta   

原文地址:http://blog.51cto.com/59090939/2149272

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!