diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-03-30 21:29:48 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-03-30 21:29:48 +0000 |
commit | 32f36bcefcd5710a00bb168bc40c407ae899b630 (patch) | |
tree | 8de3234a26e5f3062c14f0fbb06b5c10badd6e4e /linux-user/syscall_defs.h | |
parent | bc8a22cc307ebd9a2577c8fffcb90000724f72f3 (diff) |
added SIOCATMARK and times() syscall
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@70 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'linux-user/syscall_defs.h')
-rw-r--r-- | linux-user/syscall_defs.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/linux-user/syscall_defs.h b/linux-user/syscall_defs.h index 2c442d8aa8..a442683b6d 100644 --- a/linux-user/syscall_defs.h +++ b/linux-user/syscall_defs.h @@ -39,6 +39,15 @@ struct target_itimerval { struct target_timeval it_value; }; +typedef target_long target_clock_t; + +struct target_tms { + target_clock_t tms_utime; + target_clock_t tms_stime; + target_clock_t tms_cutime; + target_clock_t tms_cstime; +}; + struct target_iovec { target_long iov_base; /* Starting address */ target_long iov_len; /* Number of bytes */ |