Giter Site home page Giter Site logo

rust_shm_ipc's Introduction

SHM IPC example in Rust

Build Status

This is an example implementatation of synchronized queue for inter-process communication in shared memory for UNIX POSIX-complaint operating systems.

Motivation is to try out rust in unix systems programming

Goals:

  • Safe IPC queue implementation
  • Rusty wrappers for pthread sync primitives

Non-goals:

  • Fast IPC queue
  • Production-ready code
  • Full-featured wrappers

Library support

Currently this example relies on master branch of rust-lang/libc because of https://github.com/rust-lang/libc/commit/532d80cdc139ea56351e21685bcfba2d3c93e34d

Required bindings will be availible in version 0.2.21

Usage example

fn child(queue: Shm<Queue<i32>>) {
    let pid = process::pid();
    queue.push(pid).unwrap()
}

fn main() {    
    // Create new queue in shm
    let queue = Shm::new(Queue::pshared())
        .unwrap();

    // Spawn processes
    for _ in 0..10 {
        process::spawn(|| {
            child(queue.clone());
        }).unwrap();    
    }

    while let Ok(Some(pid)) = queue.timed_pop(Duration::from_millis(10)) {
        println!("PID {}", pid);
    }   
}

rust_shm_ipc's People

Contributors

mersinvald avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

aggelis

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.