《嵌入式系统》课程论文Linux进程调度策略及内存管理机制.docVIP

《嵌入式系统》课程论文Linux进程调度策略及内存管理机制.doc

  1. 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
  2. 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  3. 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
  4. 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
  5. 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们
  6. 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
  7. 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
《嵌入式系统》课程论文Linux进程调度策略及内存管理机制

Linux进程调度策略及内存管理机制 摘 要: 内存是Linux内核所管理的最重要的资源之一,内存管理系统是操作系统中最为重要的部分。对于Linux的初学者来说,熟悉Linux的内存管理非常重要。 进程是运行于虚拟地址空间的一个程序。可以说,任何在Linux系统下运行的程序都是进程。 Linux系统中包括交互进程和批处理进程。交互进程是由Shell控制和运行的,既可以在前台运行,也可以在后台运行。批处理进程不属于某个终端,被提 交到一个队列中以便顺序执行。大多数的进程都需要虚拟内存。 Linux进程中最知名的属性就是它的进程号(Process Identity Number,PID)以其父进程号(Parent Process ID,PPID)。PID、PPID都是非零正整数。一个PID唯一地标识一个进程。一个进程创建新进程称为创建了子进程(Child Process),创建子进程的进程称为父进程。所有进程追溯其祖先最终都会落到进程号为1的进程身上,这个进程叫做init进程,是内核自举后第一个启动的进程。Init进程的作用是扮演终结父进程的角色。因为init进程永远不会被终止,所以系统总是确信它的存在,并在必要时以它为参照。如果某个进程在它衍生出来的全部子进程结束之前被终止,就会出现必须以init为参照的情况。此时那些失去了父进程的子进程就都会以init作为其父进程。通过执行ps-af命令,可以列出许多父进程ID为1的进程。Linux提供了一条pstree命令,允许用户查看系统内正在运行的各个进程之间的继承关系。直接在命令行输入pstree,程序会以树状结构方式列出系统中正在运行的各进程之间的继承关系。 关键词: linux; 进程调度;调度策略;内存管理 Linux kernel process scheduling and memory management Abstract: Linux kernel memory is managed by one of the most important resources, memory management system is the most important part of the operating system. For Linux beginners to be familiar with Linuxs memory management is very important. Linux kernel memory is managed by one of the most important resources, memory management system is the most important part of the operating system. For Linux beginners to be familiar with Linux is memory management is very important.Process is running on a virtual address space of a program. Can be said that any program running under Linux system is the process. Linux system, including the interactive process and the batch process. Interactive process is controlled and run by the Shell, both running in the foreground, you can also run in the background. Batch process does not belong to a terminal, to be submitted to a queue for order execution. Most of the process requires virtual memory bstract . Linux is best-known properties of the process is its process ID (Process Identity Number, PID) to the parent process ID (Parent Process ID, PPID). PID, PPID is non-zero positive integer. A PID uniquely identifies a process. Create a new process, a pr

文档评论(0)

kabudou + 关注
实名认证
文档贡献者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档