blob: aee3478e7571094bbcff2a8c67299b9d885f97ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
/*
* mq_unlink.c - remove a message queue.
*/
#include <errno.h>
#include <sys/syscall.h>
#include <mqueue.h>
#ifdef __NR_mq_unlink
#define __NR___syscall_mq_unlink __NR_mq_unlink
static inline _syscall1(int, __syscall_mq_unlink, const char *, name);
/* Remove message queue */
int mq_unlink(const char *name)
{
int ret;
if (name[0] != '/') {
__set_errno(EINVAL);
return -1;
}
ret = __syscall_mq_unlink(name + 1);
/* While unlink can return either EPERM or EACCES, mq_unlink should return just EACCES. */
if (ret < 0) {
ret = errno;
if (ret == EPERM)
ret = EACCES;
__set_errno(ret);
ret = -1;
}
return ret;
}
#endif
|