[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
(itron-club 1725) Re: TOPPERS/JSP
isig_t
imの実装について
- To: itron-club __at__ ertl.jp (itron-club ML)
- From: Tatsuhiro Ujihara <ujihara __at__ roland.co.jp>
- Date: Wed, 21 Jul 2004 12:59:19 +0900
たびたびすみません。氏原ともうします。
私の書いた結論のコードにバグがありました(^^;
訂正いたします。
> もしくは
> while (last_index > 0 && EVTTIM_LT(TMEVT_NODE(1).time, current_time))
> ^^^^^^^^^^^^
これは
while (last_index > 0 && TMEVT_NODE(1).time <= current_time)
でした。すみません。
そもそも
#define EVTTIM_LT(t1, t2) (((t1) - current_time) < ((t2) - current_time))
#define EVTTIM_LE(t1, t2) (((t1) - current_time) <= ((t2) - current_time))
で両辺をcurrent_timeで引いていますが、これは冗長なのでは?
--
Roland Corporation Japan
Tatsuhiro Ujihara