mqattr set get
Change-Id: I990a50335f6c2a9deaef87d445a970d4f398a0a5
This commit is contained in:
parent
f2d61153c6
commit
d731b1aeb5
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue