Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为操作系统考试做准备,只是意识到我不知道内核是否会取消映射为用户模式堆栈分配的页表条目?
我无法在任何地方找到答案,而且阅读内核代码需要很长时间,所以我认为在这里提问可能会更快。
编辑:我想内核不可能知道何时缩小堆栈的大小。但是,明确执行此操作的系统调用不会受到伤害。
用户线程由glic pthread 库创建,用户线程的堆栈通过调用malloc() 创建。
Linux 的默认用户堆栈大小默认限制为 8MB。您可以通过 ulimit 命令更改:
$ ulimit -s 8192 # The stack size limit is 8 MB (0x800000 bytes)