mq_unlink

Remove the specified message queue name.

version(Posix && CRuntime_Glibc)
extern (C) @nogc nothrow
int
mq_unlink
(
const(char)* name
)

Parameters

name const(char)*

Name of the queue to remove.

Return Value

Type: int

On success mq_unlink() returns 0; on error, -1 is returned, with errno set to indicate the error.

Meta