diff options
author | Oleg Nesterov <oleg@tv-sign.ru> | 2008-09-22 14:42:50 -0700 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2008-09-24 15:45:48 +0200 |
commit | 5a9fa73072854981a5c05eb7ba18a96d49c2804f (patch) | |
tree | a73c0eba84744c112b794657a03d1a5159978528 /include | |
parent | ef864c958801768fb28bd3603cd0b098b394671c (diff) | |
download | linux-3.10-5a9fa73072854981a5c05eb7ba18a96d49c2804f.tar.gz linux-3.10-5a9fa73072854981a5c05eb7ba18a96d49c2804f.tar.bz2 linux-3.10-5a9fa73072854981a5c05eb7ba18a96d49c2804f.zip |
posix-timers: kill ->it_sigev_signo and ->it_sigev_value
With the recent changes ->it_sigev_signo and ->it_sigev_value are only
used in sys_timer_create(), kill them.
Signed-off-by: Oleg Nesterov <oleg@tv-sign.ru>
Cc: mingo@elte.hu
Cc: Roland McGrath <roland@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/posix-timers.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/linux/posix-timers.h b/include/linux/posix-timers.h index f9d8e9e94e9..a7c72135554 100644 --- a/include/linux/posix-timers.h +++ b/include/linux/posix-timers.h @@ -45,8 +45,6 @@ struct k_itimer { int it_requeue_pending; /* waiting to requeue this timer */ #define REQUEUE_PENDING 1 int it_sigev_notify; /* notify word of sigevent struct */ - int it_sigev_signo; /* signo word of sigevent struct */ - sigval_t it_sigev_value; /* value word of sigevent struct */ struct task_struct *it_process; /* process to send signal to */ struct sigqueue *sigq; /* signal queue entry. */ union { |