Wed May 27 12:20:37 2009 UTC ()
Use correct linux_clock_t type for _stime, not native clock_t.


(njoly)
diff -r1.4 -r1.5 src/sys/compat/linux/arch/amd64/linux_siginfo.h

cvs diff -r1.4 -r1.5 src/sys/compat/linux/arch/amd64/linux_siginfo.h (expand / switch to context diff)
--- src/sys/compat/linux/arch/amd64/linux_siginfo.h 2008/11/23 23:48:48 1.4
+++ src/sys/compat/linux/arch/amd64/linux_siginfo.h 2009/05/27 12:20:37 1.5
@@ -1,4 +1,4 @@
-/*	$NetBSD: linux_siginfo.h,v 1.4 2008/11/23 23:48:48 njoly Exp $ */
+/*	$NetBSD: linux_siginfo.h,v 1.5 2009/05/27 12:20:37 njoly Exp $ */
 
 /*-
  * Copyright (c) 2005 Emmanuel Dreyfus, all rights reserved.
@@ -69,7 +69,7 @@
 			linux_uid_t _uid;
 			int _status;
 			linux_clock_t _utime;
-			clock_t _stime;
+			linux_clock_t _stime;
 		} _sigchld;
 
 		struct {