多線程 ( multi-thread ) RS232 串行口通訊控件 ( 1.82 版,無源碼 Delphi 3.0/4.0/5.0 版適用 ),作者: Varian Software Services NL。
標(biāo)簽: multi-thread 1.82 232 RS
上傳時(shí)間: 2013-12-11
上傳用戶:2525775
thread application code, the multi-thread application start code of Linux application
標(biāo)簽: application code multi-thread thread
上傳時(shí)間: 2017-05-07
上傳用戶:lifangyuan12
posix下的multi-thread 編程(pthread)
標(biāo)簽: multi-thread pthread posix 編程
上傳時(shí)間: 2013-12-08
上傳用戶:zhichenglu
本章提供于Windows 操作系統(tǒng)設(shè)計(jì)Modbus 通信程序所需的基本子程 序,以Borland C++ Builder V5.0 所設(shè)計(jì)的Sample Porgram 提供讀者參考。 所有原始檔(source program)都存于隨書贈(zèng)送的光盤片內(nèi)。讀者必須了 解通信程序是需要高度與操作系統(tǒng)的API 相配合,各種資料型態(tài)的轉(zhuǎn)換, multi-thread 的運(yùn)用,時(shí)間的掌控等事項(xiàng),以C 語言為最適合的語言。
標(biāo)簽: Windows Modbus 操作 系統(tǒng)設(shè)計(jì)
上傳時(shí)間: 2014-01-18
上傳用戶:asddsd
This is a mutlicore and cluster(of single-core,multi-core systems) matrix inversion code. Which uses the MPI(Message Passing Interface) for communication across the compute nodes of cluster and using thread-API based OpenMP(Open Multi Processing) between cores of intra-compute or head node.
標(biāo)簽: single-core multi-core inversion mutlicore
上傳時(shí)間: 2013-12-21
上傳用戶:ryb
實(shí)時(shí)操作系統(tǒng),Kernel部分完成于2006年上半年,其IPC部分甚至是年中時(shí)才具備相 應(yīng)的雛形。最開始時(shí)是因?yàn)橐獮榕笥炎鲆粋€(gè)小型的手持設(shè)備,而本人起初又是另一國(guó)內(nèi)老牌 實(shí)時(shí)操作系統(tǒng):DOOLOO RTOS開發(fā)人員,但這個(gè)團(tuán)隊(duì)在2005年底已經(jīng)解散。但朋友的系統(tǒng)要 上,用其他小型系統(tǒng)嗎,一不熟悉,二看不上。答應(yīng)朋友的事,總得有解決方法吧,即使是原來 的DOOLOO RTOS,因?yàn)槠浞耉xWorks結(jié)構(gòu),導(dǎo)致它的核心太大,包括太多不必要的東西(一套 完整的libc庫(kù)),這些方案都否決了。怎么辦?當(dāng)時(shí)朋友那邊也不算太急,先自己寫一套內(nèi)核吧。 這個(gè)就是源頭!(后來雖然朋友的項(xiàng)目夭折了,但這套OS則保留下來了,并開源了,萬幸) 1 序 3 1.1 RT-Thread誕生 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3 1.2 艱難的發(fā)展期 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3 1.3 一年增加0.0.1 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4 1.4 Cortex-M3的變革 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4 1.5 面向?qū)ο笤O(shè)計(jì)方法 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 4 1.6 文檔結(jié)構(gòu) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5 2 實(shí)時(shí)系統(tǒng) 7 2.1 嵌入式系統(tǒng) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7 2.2 實(shí)時(shí)系統(tǒng) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8 2.3 軟實(shí)時(shí)與硬實(shí)時(shí) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 8 3 快速入門 11 3.1 準(zhǔn)備環(huán)境 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11 3.2 初識(shí)RT-Thread . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 14 3.3 系統(tǒng)啟動(dòng)代碼 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 18 3.4 用戶入口代碼 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 20 3.5 跑馬燈的例子 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 21 3.6 生產(chǎn)者消費(fèi)者問題 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 22 4 RT-Thread簡(jiǎn)介 25 4.1 實(shí)時(shí)內(nèi)核 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 26 4.2 虛擬文件系統(tǒng) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27 4.3 輕型IP協(xié)議棧 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27 4.4 shell系統(tǒng) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27 4.5 圖形用戶界面 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 27 4.6 支持的平臺(tái) . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 28 5 內(nèi)核對(duì)象模型 29 5.1 C語言的對(duì)象化模型 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 29 5.2 內(nèi)核對(duì)象模型 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 32 6 線程調(diào)度與管理 39 6.1 實(shí)時(shí)系統(tǒng)的需求 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 39
標(biāo)簽: RT-Thread 實(shí)時(shí)操作系統(tǒng) 編程指南 版本
上傳時(shí)間: 2013-10-14
上傳用戶:1234321@q
multi-line Adjunct Communication Server
標(biāo)簽: Communication multi-line Adjunct Server
上傳時(shí)間: 2015-01-03
上傳用戶:784533221
Java Thread Programming (Source
標(biāo)簽: Programming Thread Source Java
上傳時(shí)間: 2014-01-24
上傳用戶:ljt101007
多線程管理器源代碼thread manager,VC開發(fā)的,很不錯(cuò)哦。
標(biāo)簽: manager thread VC 多線程
上傳時(shí)間: 2014-09-09
上傳用戶:kytqcool
SnackAmp is a powerful multi-platform audio music (mp3, ogg ,wav, streams ...) player and organizer for large music collections. Manage your entire collection, including ID3 tagging and auto-playlisting. Integrated web server for remote control/streaming
標(biāo)簽: multi-platform organizer SnackAmp powerful
上傳時(shí)間: 2013-12-22
上傳用戶:3到15
蟲蟲下載站版權(quán)所有 京ICP備2021023401號(hào)-1