mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
linux-user: Added posix message queue syscalls except mq_notify
Signed-off-by: Lionel Landwerlin <lionel.landwerlin@openwide.fr> Signed-off-by: Kirill A. Shutemov <kirill@shutemov.name> Signed-off-by: Riku Voipio <riku.voipio@iki.fi> Signed-off-by: Aurelien Jarno <aurelien@aurel32.net> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@7114 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
a3a1e0fc53
commit
24e1003a52
3 changed files with 126 additions and 6 deletions
|
@ -1998,6 +1998,13 @@ struct linux_dirent64 {
|
|||
char d_name[256];
|
||||
};
|
||||
|
||||
struct target_mq_attr {
|
||||
abi_long mq_flags;
|
||||
abi_long mq_maxmsg;
|
||||
abi_long mq_msgsize;
|
||||
abi_long mq_curmsgs;
|
||||
};
|
||||
|
||||
#include "socket.h"
|
||||
|
||||
#include "errno_defs.h"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue