美文网首页
Linux内核设计与实现 内核简介

Linux内核设计与实现 内核简介

作者: 虹桥过夜好无聊 | 来源:发表于2017-12-20 22:32 被阅读0次

A Beast of Different Nature

    1. No libc

    2. GNU C

            1.Inline Function

            2.Inline Assembly:  asm() function.

            3.Brach Annotation:   

                    if (unlikely(foo)) {

                    }

                    if (likely(foo) {

                    }

    3. No Memory Protection: 

            Additionally, Kernel memory is not Pageable. Therefore, every byte of memory you consume is one less bytes of available physical memory.

    4. Small, Fixed-Size Stack

            Each process receives its own stack(both in kernel space and user space).

相关文章

网友评论

      本文标题:Linux内核设计与实现 内核简介

      本文链接:https://www.haomeiwen.com/subject/iegnwxtx.html