diff options
author | dchagin <dchagin@FreeBSD.org> | 2009-05-07 12:55:58 +0000 |
---|---|---|
committer | dchagin <dchagin@FreeBSD.org> | 2009-05-07 12:55:58 +0000 |
commit | e0ce6b415e3db13761dcef8945261fbfb00cde10 (patch) | |
tree | fdac060302ec3f501d2ada874b2f9edb2e61eee7 /sys/compat/linux/linux_misc.c | |
parent | 69492be31f58cf59e96c63896ecff0b07957f7df (diff) | |
download | FreeBSD-src-e0ce6b415e3db13761dcef8945261fbfb00cde10.zip FreeBSD-src-e0ce6b415e3db13761dcef8945261fbfb00cde10.tar.gz |
Change linux struct tms definition to match actual linux one.
Approved by: kib (mentor)
MFC after: 2 weeks
Diffstat (limited to 'sys/compat/linux/linux_misc.c')
-rw-r--r-- | sys/compat/linux/linux_misc.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/compat/linux/linux_misc.c b/sys/compat/linux/linux_misc.c index 82bd7b9..01eaa24 100644 --- a/sys/compat/linux/linux_misc.c +++ b/sys/compat/linux/linux_misc.c @@ -653,10 +653,10 @@ linux_time(struct thread *td, struct linux_time_args *args) } struct l_times_argv { - l_long tms_utime; - l_long tms_stime; - l_long tms_cutime; - l_long tms_cstime; + l_clock_t tms_utime; + l_clock_t tms_stime; + l_clock_t tms_cutime; + l_clock_t tms_cstime; }; #define CLK_TCK 100 /* Linux uses 100 */ |