搜索资源列表
Linuxc
- 主要是其于linux c编程,包括了进程通信,进程同步与互斥,以及采用二进制读写文件,还有文档说明
EventCore0.004
- 什么是EventCore库 EventCore是一个用于提供线程同步,事件驱动,进程间数据传递,高精度计时器等功能的开源库。EventCore的最新源代码,可以在 http://event.googlecode.com 得到。EventCore库使用方便简单,内建线程管理,是开发多线程程序非常实用的一个库。 为什么要开发EventCore库 开发EventCore的目的是为了解决多线程程序通信,数据传递,函数调用,防死锁,线程同步,高精度计时器等问题。笔者在开发多线程程序时常常被线
LinuxMutiProc
- 多进程之间并发执行的实例,IPC通信举例 熟悉进程间的异步同步方式
12_shm
- Linux 下进程间通信实例之一——共享内存 使用了信号量用于进程间的同步-Linux, one example of inter-process communication- shared memory semaphore used for synchronization between processes
Linux
- 该文件包含了Linux编程的很多例程包括了多任务编程,多任务间的通信和同步,CAN总线驱动,SD卡驱动等,涵盖面广阔,对于了解Linux编程很有帮助-This file contains a lot of Linux programming routines include multi-task programming, multi-task communication and synchronization between, CAN bus driver, SD card driver and
philosopher
- 模拟“五个哲学家”问题该实验的要点是,解决并发环境下,多进程之间的同步与互斥问题。进程间的同步互斥必然涉及进程间的通信(信息交换)。-Simulation of the " five philosophers" problem of the main points of the experiment, the solution to complicated circumstances, between the multi-process synchronization and
trainticket
- 利用进程模拟火车票售票系统,主要是为了实现进程同步和通信,其中用到了互斥变量-train ticket sale system
os
- 分别利用UNIX的消息通信机制、共享内存机制(用信号灯实施进程间的同步和互斥)实现两个进程间的数据通信。具体的通信数据可从一个文件读出,接收方进程可将收到的数据写入一个新文件,以便能判断数据传送的正确性(对文件操不熟悉的同学可不必通过读写文件,只要键盘输入和输出至屏幕进行比较即可)。 -, Respectively, using the information communication mechanism UNIX, shared memory mechanism (with tr
12_msg
- Linux 进程间通信实例之一——消息队列 使用了信号量用于进程间的同步。-Linux is one example of inter-process communication- the message queue using semaphores for synchronization between processes.
Comm
- 在Linux下完成的对串口进行同步和异步通信。需要使用gcc命令进行编译。不同于Window-Done under the Linux on the serial port synchronous and asynchronous communication. Need to be compiled using the gcc command. Unlike Window
chaos_communication1
- 在两个混沌系统实现单变量驱动耦合同步情况下,采用混沌遮掩的加密方式,实现混沌保密通信,-Two chaotic systems synchronize single variable drive coupling case, the use of chaos cover of encryption, Secure Communication,
Linux_process_synchronization_communication_docume
- Linux进程同步、通信的主要机制经典文档Linux process synchronization, communication documents the main mechanism for classical-Linux process synchronization, the main mechanism for communication classic document Linux process synchronization, communication documents t
caozuoxitong2
- 创建无名管道,实现基于管道的进程间数据通信,掌握管道通信的方法及特征;并进一步理解互斥与同步的含义。-Create anonymous pipe, pipe-based inter-process data communication, control methods and characteristics of communication channels and further understanding of the meaning of mutual exclusion and syn
ProcessCommunication
- 进程通信 掌握用邮箱方式进行进程通信的方法,并通过设计实现简单邮箱理解进程通信中的同步问题以及解决该问题的方法。-Process communication way to master the process of using the mailbox communication method, and simple mail through the design process of communication to understand and solve the synchronizat
LinuxMutex
- Linux环境进程间通信信号灯,信号灯与其他进程间通信方式不大相同,它主要提供对进程间共享资源访问控制机制。相当于内存中的标志,进程可以根据它判定是否能够访问某些共享资源,同时,进程也可以修改该标志。除了用于访问控制外,还可用于进程同步。-Mutex
Linuxmemory
- Linux环境进程间通信共享内存,共享内存可以说是最有用的进程间通信方式,也是最快的IPC形式。两个不同进程A、B共享内存的意思是,同一块物理内存被映射到进程A、B各自的进程地址空间。进程A可以即时看到进程B对共享内存中数据的更新,反之亦然。由于多个进程共享同一块内存区域,必然需要某种同步机制,互斥锁和信号量都可以。-Memory
8paper8
- 一种利用CPRNG实现的混沌同步加密通信方案 提出了一种利用新型的基于混沌的伪随机数发生器CHAOS系统实现的数据加密通信方案, 在该方案中,发、 收两端的CPRNG系统将驱动系统产生的混沌序列转换为加密密钥序列,利用这些密钥序列对明文数据按字节切 换交替加密, 系统的主要优点是在通信的安全性和同步性上有所改善,且便于用软件实现,-An encryption approach to chaos synchronization communications by using CP
VCPPcode5
- 多线程,同步与异步,进程间通信,activeX控件,动态链接库,HOOK和数据库ODBC访问-Multi-threaded, synchronous and asynchronous, inter-process communication, activeX controls, dynamic link library, HOOK and database ODBC access
API-com
- 串行端口是系统资源的一部分,其本质是作为CPU和串行设备间的编码转换器。当数据从 CPU经过串行端口发送出去时,字节数据转换为串行的位(Bit) 接收数据时,串行的位被转换为字节数据。应用程序要使用串口进行通信,必须在使用之前向操作系统提出资源申请要求(即打开串口),通信完成后再释放资源(即关闭串口)。串行通信一般可以分为同步和异步两种操作方式。所谓同步方式是指在串口的接收缓冲区中读取规定数目的数据,直到规定数目的数据全部被读出或设定的超时时间已到才返回。如果规定的待读取数据量大且设定的超时时间
nhsdj
- 数字多媒体通信同步技术的C++实现的Simulink仿真()