mqattr set get

Change-Id: I990a50335f6c2a9deaef87d445a970d4f398a0a5
This commit is contained in:
wuyunjie 2021-04-08 10:26:39 +08:00
parent f2d61153c6
commit d731b1aeb5
1 changed files with 10 additions and 0 deletions

View File

@ -428,6 +428,16 @@ int mq_getsetattr(mqd_t mqd, const struct mq_attr *new, struct mq_attr *old)
return OsMqSetAttr(mqd, new, old);
}
int mq_getattr(mqd_t mqd, struct mq_attr *attr)
{
return mq_getsetattr(mqd, 0, attr);
}
int mq_setattr(mqd_t mqd, const struct mq_attr *new, struct mq_attr *old)
{
return mq_getsetattr(mqd, new, old);
}
int mq_unlink(const char *mqName)
{
INT32 ret = 0;