欢迎来到天天文库
浏览记录
ID:27541583
大小:68.50 KB
页数:5页
时间:2018-12-03
《linux内核的进程调度策略和内存管理》由会员上传分享,免费在线阅读,更多相关内容在学术论文-天天文库。
1、Linux内核的进程调度策略和内存管理摘要:内存是Linux内核所管理的最重要的资源之一,内存管理系统是操作系统中最为重要的部分。对于Unux的初学者来说,熟悉Unux的内存管理非常重要。进程是运行于虚拟地址空间的一个程序。可以说,任何在Linux系统下运行的程序都是进程。Linux系统中包括交互进程和批处理进程。交互进程是由Shell控制和运行的,既可以在前台运行,也可以在后台运行。批处理进程不属于某个终端,被提交到一个队列中以便顺序执行。大多数的进程都需要虚拟内存。Linux进程屮最知名的属性就是它的进程号(ProcessIdentityNumber,PID)以某父进程号(Parent
2、ProcessID,PPID)。PID、PPID都是非零正整数。一个PID唯一地标识一个进程。—个进程创建新进程称力创建了子进程(ChildProcess),创建子进程的进程称力父进程。所有进程追溯其祖先最终都会落到进程号为1的进程身上,这个进程叫做init进程,是内核自举后第一个启动的进程。Init进程的作用是扮演终结父进程的角色。因为init进程永远不会被终止,所以系统总是确信它的存在,并在必要时以它为参照。如果某个进程在它衍生出来的全部子进程结束之前被终止,就会出现必须以init为参照的情况。此时那些失去了父进程的子进程就都会以init作为其父进程。通过执行ps-af命令,可以列出许
3、多父进程ID为1的进程。Linux提供了一条pstree命令,允许用户查看系统内正在运行的各个进程之间的继承关系。直接在命令行输入pstree,程序会以树状结构方式列fli系统中正在运行的各进程之间的继承关系。关键词:linux;进程调度;调度策略;内存管理LinuxkernelprocessschedulingandmemorymanagementAbstract:Linuxkernelmemoryismanagedbyoneofthemostimportantresources,memorymanagementsystemisthemostimportantpartoftheopera
4、tingsystem.ForLinuxbeginnerstobefamiliarwithLinux’smemorymanagementisveryimportant.Linuxkernelmemoryismanagedbyoneofthemostimportantresources,memorymanagementsystemisthemostimportantpartoftheoperatingsystem.ForLinuxbeginnerstobefamiliarwithLinuxismemorymanagementisveryimportant.Processisrunningona
5、virtualaddressspaceofaprogram.CanbesaidthatanyprogramrunningunderLinuxsystemistheprocess.Linuxsystem,includingtheinteractiveprocessandthebatchprocess.InteractiveprocessiscontrolledandrunbytheShell,bothrunningintheforeground,youcanalsoruninthebackground.Batchprocessdoesnotbelongtoaterminal,tobesubm
6、ittedtoaqueuefororderexecution.Mostoftheprocessrequiresvirtualmemorybstract.Linuxisbest-knownpropertiesoftheprocessisitsprocessID(ProcessIdentityNumber,PID)totheparentprocessID(ParentProcessID,PPID).PID,PPIDisnon-zeropositiveinteger.APIDuniquelyidentifiesaprocess.Createanewprocess,aprocessknownasc
7、reatingachildprocess(ChildProcess),theprocessofcreatingthechildprocessiscalledparent.Allprocesseswilleventuallyfallbacktotheirancestralprocessoftheprocessnumber1,thebody,thisprocessiscalledinitprocessisthekernelb
此文档下载收益归作者所有