搜索资源列表
my_linux_fifo
- linux下面消息队列具体实现源代码,测试通过-below Message Queue concrete realization of the source code, the test
TestKfifo
- Kfifo源于Linux下的C源码,经封装成C++的CKfifo类 源文件:Kfifo.h 和 Kfifo.cpp 功能:具有互斥功能的BUF队列类。 编译环境: Visual Studio2008-Kfifo from the C source code under Linux, after packaging into a C++, CKfifo class source file: Kfifo.h and Kfifo.cpp functions: BUF
FrameC_V0_4
- 1. 这是对之前MyOOCFwV1_0(http://www.pudn.com/downloads229/sourcecode/middleware/detail1079540.html)的完善,解决了之前的bug 2. 新添源码(src目录下):CharString、链式栈、链式队列、先序二叉树 3. 新添测试代码,放在test目录下 4. 运行环境:Linux + Eclipse IDE for C/C++ Developers-1. This is the improved v
cprops
- The cprops (C prototyping tools) library provides a portable, thread-safe C API including linked list, binary heap, priority queue, hash table, hash list, trie, AVL, Red-Black, and splay tree implementations, a thread pool and thread management fra
C_Message-Queue
- [C代码]-利用消息队列实现文件传输(Linux)-[C code]- the message queue file transfer (Linux)
message-queue
- linux消息队列,展示了消息队列怎么使用的,并用了收发经纬度的例子-linux message queue,show how-to-do,and demostrator read/write latitude and longtitude
the-message-communication-principles
- 【实验内容】 编写一段程序,同时父进程创建两个子进程p1和p2;并使子进程p1与子进程p2通过消息队列相互发送消息(512字节)。 【实验目的】 系统了解linux系统的通信机构IPC ,掌握IPC中消息通信机制,理解消息通信的方法及特征。 【实验要求】 (1)掌握系统调用msgget()、msgsnd()、msgrev()、msgctl()的使用方法及其功能,理解消息通信原理; (2)系统理解linux 的三种通信机制。 -Experimental Cont
ArrayBlockingQueueTest
- Array Blocking Queue Test Source Code for Linux.
AbstractQueueTest
- Abstract Queue Test for Linux v2.13.6.
55
- linux下多线程结构体数组对文件进行读写操作,涉及一条线程打开文件,读取一个文件数据,入队到循环队列buffer;另一条线程循环队列buffer进行出队写入到另一个文件中。-Under Linux multithreaded structure array to the file to read and write operations, involving a thread to open the file, read a file data, the team to the circula
66
- linux下c语言循环队列中,进行入队出队时把数据放进循环队列缓冲区进行读写操作。可以判断队列状态:满、空、运行正确、运行错误 。属于比较经典的例子-Cyclic queue, under Linux c team when the team put the data into the circular queue buffer to read and write operations. To judge the queue status: full, empty, correct operat
VCThreadPool3
- 1.线程池管理器(ThreadPoolManager):用于创建并管理线程池 2.工作线程(WorkThread): 线程池中线程 3.任务接口(Task):每个任务必须实现的接口,以供工作线程调度任务的执行。 4.任务队列:用于存放没有处理的任务。提供一种缓冲机制。 网上的c/c++线程池多是linux下的,这个是VC6.0的线程池。其涉及的主要文件有:ThreadPoolManage、IThreadExcute、TemporarilyThread、ThreadManage、RegKeyIni