論文格式
      電氣工程 會計論文 金融論文 國際貿(mào)易 財務管理 人力資源 輕化工程 德語論文 工程管理 文化產(chǎn)業(yè)管理 信息計算科學 電氣自動化 歷史論文
      機械設計 電子通信 英語論文 物流論文 電子商務 法律論文 工商管理 旅游管理 市場營銷 電視制片管理 材料科學工程 漢語言文學 免費獲取
      制藥工程 生物工程 包裝工程 模具設計 測控專業(yè) 工業(yè)工程 教育管理 行政管理 應用物理 電子信息工程 服裝設計工程 教育技術學 論文降重
      通信工程 電子機電 印刷工程 土木工程 交通工程 食品科學 藝術設計 新聞專業(yè) 信息管理 給水排水工程 化學工程工藝 推廣賺積分 付款方式
      • 首頁 |
      • 畢業(yè)論文 |
      • 論文格式 |
      • 個人簡歷 |
      • 工作總結 |
      • 入黨申請書 |
      • 求職信 |
      • 入團申請書 |
      • 工作計劃 |
      • 免費論文 |
      • 合作期刊 |
      • 論文同學網(wǎng) |
      搜索 高級搜索

      當前位置:論文格式網(wǎng) -> 畢業(yè)論文 -> 計算機論文
      畢業(yè)論文標題:

      嵌入式操作系統(tǒng)的內(nèi)核研究

       本文ID:LWGSW13581 價格:收費積分/100
      掃一掃 掃一掃
      本站會員可自行下載:下載地址 嵌入式操作系統(tǒng)的內(nèi)核研究 (收費:1000 積分)  

      論文字數(shù):20111,頁數(shù):40  有開題報告,任務書

      摘要
       嵌入式操作系統(tǒng)是嵌入式系統(tǒng)的核心部分,是系統(tǒng)功能的外在表現(xiàn),它控制著整個系統(tǒng)的所有資源并提供開發(fā)應用程序的基礎。由于Linux操作系統(tǒng)所具有的若干優(yōu)良特點,例如,源代碼免費、內(nèi)核穩(wěn)定高效,使得基于Linux來研究嵌入式操作系統(tǒng)成為一種廉價、高效率、市場前景廣闊的研究策略。
       Linux的內(nèi)核資源豐富,功能完善,工作穩(wěn)定。本文首先介紹了虛擬文件系統(tǒng)模塊、進程通信模塊、網(wǎng)絡接口模塊的工作原理。在對其組成模塊深入的分析基礎上,著重剖析了內(nèi)核的內(nèi)存管理模塊和進程管理模塊。然后通過研究Linux進程調(diào)度算法實時性問題,提出了一種基于動態(tài)優(yōu)先級的進程調(diào)度的實現(xiàn)方案。該算法提出了一種動態(tài)的優(yōu)先級的思想,可以根據(jù)進程的狀態(tài)來改變進程的優(yōu)先級,能夠較好的適應系統(tǒng)的實時性要求。設計并實現(xiàn)了該算法,通過實驗模擬,表明其具有良好的性能。最后進一步介紹了Linux內(nèi)核編譯,升級和移植的方法。
       
      關鍵詞:嵌入式操作系統(tǒng),Linux內(nèi)核,進程
      Research on the Kernel of Embedded Operating System
       Abstract
       Embedded operating system is the key part of embedded system and the outer representation of system functions. It controls all the resources of the whole system and provides the foundation for exploiting and applying programs. Linux operating system possesses a variety of good characteristics: for example, the formal code is free and the kernel of it is steady and highly effective. These advantages make the research on embedded operating system, which is based on Linux, a research strategy that is highly effective and of broad market prospects.
          Linux kernel is rich in resources, functions and stable when it works. This paper introduces the work principles of the Virtual File System module, the process of communication module and the network interface module. In its in-depth modules based on the analysis, it focuses on an analysis of the kernel memory management module and process management module. Through doing researching on the process of Linux for real-time scheduling algorithm, this paper presents a dynamic priority based on the process of realization of program scheduling. The algorithm presents a dynamic priority of thinking,  which can change the process priority according to the state of the process and better adapt the real-time requirements. This algorithm has strong advantages in improving the real-time system. This paper designs and implements the algorithm and the simulation test confirms its good performances. Finally, this paper introduces the compiling, upgrading and transplanting methods on the Linux kernel.

         Key words:  embedded operating system, Linux kernel, process  
       目錄
      1.緒論 1
      1.1課題來源及研究意義 1
      1.2 Linux特性簡介 1
      1.3研究發(fā)展現(xiàn)狀 3
      1.4本文結構 3
      2. Linux內(nèi)核體系結構 4
      2.1內(nèi)核結構概述 4
      2.2內(nèi)存管理模塊 6
      2.2.1虛擬內(nèi)存 6
      2.2.2請求調(diào)頁 7
      2.2.3交換 8
      2.2.4共享虛擬內(nèi)存 9
      2.2.5訪問控制 9
      2.3進程管理 9
      2.3.1 Linux進程數(shù)據(jù)結構 10
      2.3.2進程調(diào)度與切換 11
      2.4虛擬文件系統(tǒng) 15
      2.4.1組成模塊 15
      2.4.2數(shù)據(jù)表示 16
      2.5網(wǎng)絡接口 16
      2.5.1組成模塊 16
      2.5.2數(shù)據(jù)表示 16
      2.6進程間通信 16
      3.嵌入式操作系統(tǒng)的進程調(diào)度的改造 18
      3.1算法提出 18
      3.2一般嵌入式操作系統(tǒng)的進程調(diào)度 18
      3.2.1 FCFS進程調(diào)度算法 18
      3.2.2靜態(tài)優(yōu)先級調(diào)度算法 18
      3.2.3兩種算法存在的缺陷 19
      3.3動態(tài)優(yōu)先級調(diào)度算法 20
      3.3.1動態(tài)優(yōu)先級基本法則 20
      3.3.2算法的模擬與實現(xiàn) 20
      3.3.3程序結果 28
      3.4結論 28
      4. Linux內(nèi)核的編譯與移植 29
      4.1配置內(nèi)核 29
      4.2編譯內(nèi)核和模塊 30
      4.3內(nèi)核移植 31
      總結 33
      致謝 34
      參考文獻 35


      相關論文
      本論文在計算機論文欄目,由論文格式網(wǎng)整理,轉(zhuǎn)載請注明來源www.donglienglish.cn,更多論文,請點論文格式范文查看
      上一篇:高速公路收費系統(tǒng)設計與實現(xiàn) 下一篇:電力負荷管理系統(tǒng)測試方案設計與..
      Tags:嵌入式 操作系統(tǒng) 內(nèi)核 研究 【收藏】 【返回頂部】
      最新文章
      熱門文章
      計算機論文
      推薦文章

      本站部分文章來自網(wǎng)絡,如發(fā)現(xiàn)侵犯了您的權益,請聯(lián)系指出,本站及時確認刪除 E-mail:349991040@qq.com

      論文格式網(wǎng)(www.donglienglish.cn--論文格式網(wǎng)拼音首字母組合)提供計算機論文畢業(yè)論文格式,論文格式范文,畢業(yè)論文范文

      Copyright@ 2010-2018 LWGSW.com 論文格式網(wǎng) 版權所有 蜀ICP備09018832號

      感谢您访问我们的网站,您可能还对以下资源感兴趣:

      论文格式网:毕业论文格式范文