搜索资源列表
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.
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
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!
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.
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