sys_mq_unlink  [ipc/mqueue.c]


Destroys POSIX message queue.

Arguments

eax 278
ebx Pointer to a null terminated queue name.

Return values

If the system call succeeds the return value is 0.
If the system call fails the return value is one of the following errno values:

-EACCES The caller does not have permission to unlink this message queue.
-ENAMETOOLONG Name was too long.
-ENOENT There is no message queue with the given name.

Remarks

The queue will be destroyed once any other processes that have the queue open close their descriptors referring to the queue.

Compatibility

n/a