Implement deletion of SysV IPC message queues

As usual also the readme and the man page are updated.
This commit is contained in:
finga 2021-07-07 20:48:07 +02:00
parent 4d200bb5f3
commit cc19087195
6 changed files with 103 additions and 6 deletions

View file

@ -25,6 +25,7 @@ enum PosixCommand {
#[derive(Clap, Debug)]
enum SysvCommand {
Create(sysv::Create),
Unlink(sysv::Unlink),
}
#[derive(Clap, Debug)]
@ -68,6 +69,7 @@ fn main() -> Result<()> {
},
Backend::Sysv(s) => match s {
SysvCommand::Create(c) => c.run()?,
SysvCommand::Unlink(u) => u.run()?,
},
}