mqrs/sysvmq
finga e96ba1dca1
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
cargo: Add some Cargo metadata
Add a homepage URL and a the readme to sysvmq's Cargo.toml.
2023-12-08 01:22:33 +01:00
..
src sysvmq: Implement send and recv and refactor 2023-12-08 01:22:33 +01:00
tests sysvmq: Implement send and recv and refactor 2023-12-08 01:22:33 +01:00
.gitignore Implement creation of SysV IPC message queues 2021-07-07 20:31:16 +02:00
Cargo.toml cargo: Add some Cargo metadata 2023-12-08 01:22:33 +01:00
CHANGELOG.md sysvmq: Implement send and recv and refactor 2023-12-08 01:22:33 +01:00
README.md readme: Add an example to the readme 2023-12-08 01:22:33 +01:00

Sysvmq

This library provides a convenient and easy usable API for SysV IPC message queues.

use sysvmq::{SysvMq, SysvMqError};

fn example() -> Result<(), SysvMqError> {
    let mut mq = SysvMq::new(0)?;
    let mut buf = [0u8; 11];

    mq.send(b"hello queue")?;
    mq.recv(&mut buf)?;
    mq.delete()?;

    Ok(())
}