From 40678c46bdf55d7e2d19b0052c63fdead2ea78a9 Mon Sep 17 00:00:00 2001
From: Geert Uytterhoeven <geert@linux-m68k.org>
Date: Thu, 20 Mar 2003 06:02:10 -0800
Subject: [PATCH] [PATCH] M68k POSIX timers

M68k: Update POSIX timers in struct siginfo (cfr. asm-generic/siginfo.h in
2.5.63)
---
 include/asm-m68k/siginfo.h | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/include/asm-m68k/siginfo.h b/include/asm-m68k/siginfo.h
index bedd92cb4a9e..05a8d6d90b58 100644
--- a/include/asm-m68k/siginfo.h
+++ b/include/asm-m68k/siginfo.h
@@ -23,8 +23,11 @@ typedef struct siginfo {
 
 		/* POSIX.1b timers */
 		struct {
-			unsigned int _timer1;
-			unsigned int _timer2;
+			timer_t _tid;		/* timer id */
+			int _overrun;		/* overrun count */
+			char _pad[sizeof( __ARCH_SI_UID_T) - sizeof(int)];
+			sigval_t _sigval;	/* same as below */
+			int _sys_private;       /* not to be passed to user */
 		} _timer;
 
 		/* POSIX.1b signals */
-- 
2.30.9