Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/compat/netbsd32 tv_usec in netbsd32_timeval is suseconds...
details: https://anonhg.NetBSD.org/src/rev/1db9a6d47733
branches: trunk
changeset: 348880:1db9a6d47733
user: rin <rin%NetBSD.org@localhost>
date: Sun Nov 13 13:52:41 2016 +0000
description:
tv_usec in netbsd32_timeval is suseconds_t (aka int32_t) rather than
netbsd32_long (considered harmless)
approved by martin
diffstat:
sys/compat/netbsd32/netbsd32.h | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diffs (18 lines):
diff -r 6b87ada5ce40 -r 1db9a6d47733 sys/compat/netbsd32/netbsd32.h
--- a/sys/compat/netbsd32/netbsd32.h Sun Nov 13 12:58:40 2016 +0000
+++ b/sys/compat/netbsd32/netbsd32.h Sun Nov 13 13:52:41 2016 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: netbsd32.h,v 1.113 2016/10/19 09:44:01 skrll Exp $ */
+/* $NetBSD: netbsd32.h,v 1.114 2016/11/13 13:52:41 rin Exp $ */
/*
* Copyright (c) 1998, 2001, 2008, 2015 Matthew R. Green
@@ -210,7 +210,7 @@
typedef netbsd32_pointer_t netbsd32_timevalp_t;
struct netbsd32_timeval {
netbsd32_time_t tv_sec; /* seconds */
- netbsd32_long tv_usec; /* and microseconds */
+ suseconds_t tv_usec; /* and microseconds */
};
typedef netbsd32_pointer_t netbsd32_timezonep_t;
Home |
Main Index |
Thread Index |
Old Index