NAME
mq_unlink - remove a message queue
SYNOPSIS
#include <mqueue.h>
I mqd_t mq_unlink(const char * name );
DESCRIPTION
R mq_unlink ()
removes the specified message queue
R name .
The message queue name is removed immediately.
The queue itself is destroyed once any other processes that have
the queue open close their descriptors referring to the queue.
RETURN VALUE
On success
R mq_unlink ()
returns 0; on error, -1 is returned, with
errno
set to indicate the error.
ERRORS
EACCES
The caller does not have permission to unlink this message queue.
ENAMETOOLONG
R name
was too long.
ENOENT
There is no message queue with the given
R name .
CONFORMING TO
POSIX.1-2001.
SEE ALSO