diff options
author | Erik de Castro Lopo <erikd@mega-nerd.com> | 2013-11-29 18:39:22 +1100 |
---|---|---|
committer | Riku Voipio <riku.voipio@linaro.org> | 2013-11-29 10:58:10 +0200 |
commit | 905bba13ca292cb8c83fe5ccdf8a95bd04168bb1 (patch) | |
tree | 25557e25aedd6f480572d635791464d81720fc4c /linux-user | |
parent | 7dc65c02fe3fb8f3146ce0b9ff5fec5945329f0e (diff) | |
download | qemu-905bba13ca292cb8c83fe5ccdf8a95bd04168bb1.tar.gz qemu-905bba13ca292cb8c83fe5ccdf8a95bd04168bb1.tar.bz2 qemu-905bba13ca292cb8c83fe5ccdf8a95bd04168bb1.zip |
linux-user: Add target struct defs needed for POSIX timer syscalls.
Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
Diffstat (limited to 'linux-user')
-rw-r--r-- | linux-user/syscall_defs.h | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/linux-user/syscall_defs.h b/linux-user/syscall_defs.h index fe540f6563..cf08db5a23 100644 --- a/linux-user/syscall_defs.h +++ b/linux-user/syscall_defs.h @@ -168,6 +168,11 @@ struct target_itimerval { struct target_timeval it_value; }; +struct target_itimerspec { + struct target_timespec it_interval; + struct target_timespec it_value; +}; + typedef abi_long target_clock_t; #define TARGET_HZ 100 @@ -2527,3 +2532,23 @@ struct target_ucred { }; #endif + + +struct target_timer_t { + abi_ulong ptr; +}; + +struct target_sigevent { + target_sigval_t sigev_value; + int32_t sigev_signo; + int32_t sigev_notify; + union { + int32_t _pad[ARRAY_SIZE(((struct sigevent *)0)->_sigev_un._pad)]; + int32_t _tid; + + struct { + void (*_function)(sigval_t); + void *_attribute; + } _sigev_thread; + } _sigev_un; +}; |