diff options
| author | aurel32 | 2009-04-15 18:11:43 +0200 |
|---|---|---|
| committer | aurel32 | 2009-04-15 18:11:43 +0200 |
| commit | 24e1003a524922782bb0290ecceef01676f92c16 (patch) | |
| tree | 60f16fc262a4dc6ec0d5e08a2ff4862625ddf982 /linux-user/syscall_defs.h | |
| parent | Simplify reconfiguration (diff) | |
| download | qemu-24e1003a524922782bb0290ecceef01676f92c16.tar.gz qemu-24e1003a524922782bb0290ecceef01676f92c16.tar.xz qemu-24e1003a524922782bb0290ecceef01676f92c16.zip | |
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
Diffstat (limited to 'linux-user/syscall_defs.h')
| -rw-r--r-- | linux-user/syscall_defs.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/linux-user/syscall_defs.h b/linux-user/syscall_defs.h index 7db7a8c1f8..a3736905d9 100644 --- a/linux-user/syscall_defs.h +++ b/linux-user/syscall_defs.h @@ -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" |
