CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 搜索资源 - Shared memory

搜索资源列表

  1. uemorycode

    0下载:
  2. C ++ source code shared memory source code(C + + source code Shared memory source code)
  3. 所属分类:界面编程

    • 发布日期:2017-12-27
    • 文件大小:1024
    • 提供者:邵一凡
  1. thethe

    0下载:
  2. vc中使用共享内存实现进程间通信,代码易懂,不错的源码(Vc is used in the Shared memory to achieve interprocess communication, code simple, good source)
  3. 所属分类:对话框与窗口

    • 发布日期:2017-12-27
    • 文件大小:34816
    • 提供者:Elijkh
  1. core

    0下载:
  2. WINDOWS核心编程的共享内存的模拟与实现,采用WIN32和DDK实现,没有用到MFC,(WINDOWS core programming simulation and realization of the Shared memory, using WIN32 and DDK, did not use MFC,)
  3. 所属分类:进程与线程

    • 发布日期:2017-12-27
    • 文件大小:3072
    • 提供者:priorjty
  1. combation caculation

    0下载:
  2. Intel编译器的自动并行化功能可以自动的将串行程序的一部分转换为线程化代码,适用于多核或多处理器的共享内存系统,OpenMP是C/C++ 和Fortan等的应用编程接口,已经被大多数计算机硬件和软件厂家所标准化。(Automatic parallelization of serial program function can automatically convert a portion of the thread of Intel code compiler, shared memory s
  3. 所属分类:并行计算

    • 发布日期:2017-12-23
    • 文件大小:3824640
    • 提供者:TTH
  1. ConsoleTest

    0下载:
  2. 本工程是用C++实现共享内存,QT工程可借鉴使用,如有问题可联系QQ2967732156(To achieve shared memory, QT engineering can be used for reference, if there are problems, you can contact QQ2967732156)
  3. 所属分类:其他

    • 发布日期:2017-12-29
    • 文件大小:22640640
    • 提供者:QT-Neal
  1. chat program using message queue.tar

    0下载:
  2. message passing by shared memory method and message quesu
  3. 所属分类:Linux/Unix编程

    • 发布日期:2017-12-31
    • 文件大小:2048
    • 提供者:Inno
  1. 内存共享c#版

    0下载:
  2. 运用windwosAPI共享内存的使用实例(Using windwosAPI shared memory example)
  3. 所属分类:系统编程

    • 发布日期:
    • 文件大小:88064
    • 提供者:yjdonger
  1. xin

    0下载:
  2. 实现串口读写\共享内存读写、消息队列、线程、epoll(Implementation of serial read-write/Shared memory read, write, message queue, thread, epoll)
  3. 所属分类:其他

    • 发布日期:2017-12-31
    • 文件大小:3072
    • 提供者:kristen_dou
  1. 834519

    0下载:
  2. C ++ source code shared memory source code()
  3. 所属分类:对话框与窗口

    • 发布日期:2018-01-03
    • 文件大小:1024
    • 提供者:SAZ%2121182
  1. moveblocks

    0下载:
  2. The Shared Memory example shows how to use the QSharedMemory class to implement inter-process communication using shared memory. To build the example, run make. To run the example, start two instances of the executable. The main() function creates an
  3. 所属分类:OpenGL

    • 发布日期:2018-01-07
    • 文件大小:29696
    • 提供者:rehalia.amit
  1. remotecontrolledcar

    0下载:
  2. The user is then asked to select an image file using QFileDialog::getOpenFileName(). The selected file is loaded into a QImage. Using a QImage lets us ensure that the selected file is a valid image, and it also allows us to immediately display the im
  3. 所属分类:android开发

    • 发布日期:2018-01-07
    • 文件大小:16384
    • 提供者:rehalia.amit
  1. shared_memory

    1下载:
  2. Linux进程间通信之使用共享内存方式,并且已使用信号量的方式实现文件的同步(Linux process communication shared memory)
  3. 所属分类:Linux/Unix编程

    • 发布日期:2018-01-08
    • 文件大小:1024
    • 提供者:Walker1989
  1. FQGI

    0下载:
  2. C ++ source code shared memory source code()
  3. 所属分类:组合框控件

    • 发布日期:2018-01-08
    • 文件大小:1024
    • 提供者:prwsgstence
  1. linux进程之间的通讯综合实例

    0下载:
  2. 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
  3. 所属分类:Linux/Unix编程

    • 发布日期:2018-01-08
    • 文件大小:4096
    • 提供者:数据包
  1. Device_Information_Test

    0下载:
  2. 测试电脑device端的参数,例如一个线程块的共享内存大小等(to test some parameters of the device, like shared memory per block and so on.)
  3. 所属分类:其他

    • 发布日期:2018-01-10
    • 文件大小:2990080
    • 提供者:eeeeeeeeeee
  1. EOSApp

    0下载:
  2. 1)设计一程序,由一个进程创建三个子进程,三个子进程一个是生产者进程,两个是消费者进程。 2)父子进程都使用父进程创建的共享存储区进行通信,由生产者进程将一个数组中的十个数值发送到由5个缓冲区组成的共享内存中。? 3)两个消费者进程轮流接收并输出这十个数值,同时将两个消费者进程读出的数值进行累加求各和。 4)考虑生产者进程生产的速度和消费者进程速度。(1) a program is designed to create three sub processes from one proc
  3. 所属分类:操作系统开发

    • 发布日期:2018-04-19
    • 文件大小:2048
    • 提供者:Ladidadidada
  1. 20171229_091046402

    0下载:
  2. 共享内存&重复运行例程,重复运行监测啊啊(Shared memory & repeated run routines, repeated running monitoring)
  3. 所属分类:Windows编程

    • 发布日期:2018-04-23
    • 文件大小:6144
    • 提供者:阿威861212
  1. 02shm

    0下载:
  2. Linux平台下共享内存的读写接口封装,简单易用(Shared memory read and write interface package, easy to use)
  3. 所属分类:Linux/Unix编程

    • 发布日期:2018-04-22
    • 文件大小:19456
    • 提供者:wkedward
  1. 共享内存

    0下载:
  2. 简单的共享内存实例,可以由计算机自动调节以提高资源利用率。(Simple shared memory instance can be automatically adjusted by the computer to improve resource utilization.)
  3. 所属分类:Windows编程

    • 发布日期:2018-04-22
    • 文件大小:324608
    • 提供者:大圣3号
  1. 662682

    0下载:
  2. C ++ source code shared memory source code()
  3. 所属分类:进程与线程

    • 发布日期:2018-04-29
    • 文件大小:1024
    • 提供者:jlston
« 1 2 ... 22 23 24 25 26 2728 29 30 »
搜珍网 www.dssz.com