d908fe1cbc
When creating a large number of queues the message queue rlimit may be reached (see mq_overview for details). This commit adds an `mq rlimit` function that displays the current rlimits and an optional `--rlimit` flag to the `create` command that can raise the rlimit when required.
10 lines
167 B
TOML
10 lines
167 B
TOML
[package]
|
|
name = "mq"
|
|
version = "0.1.0"
|
|
authors = ["Vincent Ambo <tazjin@gmail.com>"]
|
|
|
|
[dependencies]
|
|
clap = "2.26.2"
|
|
libc = "0.2.32"
|
|
nix = "0.9.0"
|
|
posix_mq = "0.1.1"
|