搜索资源列表
liux下C编程关于fifo使用的例子
- 这是liunx下C编程关于fifo使用的例子,其中比较全面的讲述了fifo的使用方法。-This is an example of using fifo in linux c,which shows a whole operation guide on fifo.
yeshicunchu
- 用c++语言编写 模拟页式存储管理-fifo算法
FlashProgramTool
- After the single transaction waveforms are implemented in the GPIF Designer, the next step is to integrate the USB portion of the overlying firmware with the GPIF Designer output to perform write and read operations to and from the external FIFO. T
页面置换算法(C语言编写)
- c语言实现的页面调度算法,用三种算法实现调度1.先进先出2.OPT3.LRU 2.页面序列从指定的文本文件(TXT文件)中取出3.输出:第一行:每次淘汰的页面号 第二行:显示缺页的总次数(上机已经运行通过!!)-pages scheduling algorithm, a three-Scheduling Algorithm 1. FIFO 2.OPT3.LRU 2. Pages from the designated sequence of text files (TXT) out of thr
wynczh
- 内存页面置换 用C语言模拟LINUX操作系统中的内存页式管理的FIFO算法和LRU算法-Memory page replacement using C language simulation of LINUX operating system management of memory pages the FIFO algorithm and LRU algorithm
fifo_Demo
- linux环境系统编程实例 fifo读写 c源码-linux c program demo,fifo read and write src
OS_EX5-1
- 模拟磁盘调度算法,fifo,scan,c-scan,c-look-Simulated disk scheduling algorithm
chat_fifo_list
- 基于fifo管道的一个简单C/S聊天程序,通过这个简单的程序,可以让我们对管道编程有更清晰的理解!-Based on a simple fifo pipe C/S chat program, through this simple program that allows programming of the pipeline we have a clearer understanding!
FIFO-process-scheduling
- 用C语言实现进程调度算法FIFO的模拟过程-C language simulation process scheduling algorithm FIFO process
fifoalru
- 简单的用C实现操作系统中的fifo&lru内存页面置换算法-Simple C achieved operating system fifo and lru memory page replacement algorithm
OPTLRUFIFOCLOCK
- 四种置换策略OPT LRU FIFO CLOCK的c++实现-OPT LRU FIFO CLOCK
Project
- trhread in c for linux. Comunicate three process Fifo .
iop_fifo_in_extra_defs
- C-code for register scope iop fifo in extra for Linux v2.13.6.
fifo
- 用c++实现的fifo内存调度算法,非常使用的一个,欢迎各位修改报错-Fifo memory scheduling algorithms using c++ implementation, use a very, welcome to modify the error
iop_fifo_in_defs
- C-code for register scope iop fifo in for Linux v2.13.6.
fifo
- compat.c - A series of functions to make it easier to convert drivers that use the old isapnp APIs. If possible use the new APIs instead.
linux进程之间的通讯综合实例
- A<========>B<=========>C<=====>D<======>E A与B进程之间通过TCP的socket传递 主要掌握socket的流程: A服务器端: socket -->bind---->listen---->accept send read B客户端: socket-->connect->read send 不懂的可以man一下 man socket B与C