From: bernie Date: Thu, 9 Dec 2004 08:35:21 +0000 (+0000) Subject: Replace IPTR with iptr_t. X-Git-Tag: 1.0.0~928 X-Git-Url: https://codewiz.org/gitweb?a=commitdiff_plain;ds=sidebyside;h=f5c3dd208e34a35779cb1ec315998e0eb4582578;hp=39cef8dc094eea562d14095556951e1d8c32f067;p=bertos.git Replace IPTR with iptr_t. git-svn-id: https://src.develer.com/svnoss/bertos/trunk@313 38d2e660-2303-0410-9eaa-f027e97ec537 --- diff --git a/drv/timer.h b/drv/timer.h index 1851ab1f..a75adfd2 100755 --- a/drv/timer.h +++ b/drv/timer.h @@ -15,6 +15,9 @@ /*#* *#* $Log$ + *#* Revision 1.21 2004/12/09 08:35:21 bernie + *#* Replace IPTR with iptr_t. + *#* *#* Revision 1.20 2004/12/08 08:56:41 bernie *#* Rename sigset_t to sigmask_t; Reformat. *#* @@ -128,7 +131,7 @@ INLINE void timer_set_event_signal(Timer *timer, struct Process *proc, sigmask_t #endif /* CONFIG_KERN_SIGNALS */ /*! Set the timer so that it calls an user hook when it expires */ -INLINE void timer_set_event_softint(Timer *timer, Hook func, IPTR user_data) +INLINE void timer_set_event_softint(Timer *timer, Hook func, iptr_t user_data) { event_initSoftInt(&timer->expire, func, user_data); }