|
|
| version 1.2, 2003/08/27 10:35:16 | version 1.3, 2004/02/13 01:04:14 |
|---|---|
| Line 214 bs_start_timeout(bsc) | Line 214 bs_start_timeout(bsc) |
| if ((bsc->sc_flags & BSSTARTTIMEOUT) == 0) | if ((bsc->sc_flags & BSSTARTTIMEOUT) == 0) |
| { | { |
| bsc->sc_flags |= BSSTARTTIMEOUT; | bsc->sc_flags |= BSSTARTTIMEOUT; |
| #ifdef __FreeBSD__ | #if defined(__DragonFly__) || defined(__FreeBSD__) |
| bsc->timeout_ch = | bsc->timeout_ch = |
| #endif | #endif |
| timeout(bstimeout, bsc, BS_TIMEOUT_INTERVAL); | timeout(bstimeout, bsc, BS_TIMEOUT_INTERVAL); |
| Line 228 bs_terminate_timeout(bsc) | Line 228 bs_terminate_timeout(bsc) |
| if (bsc->sc_flags & BSSTARTTIMEOUT) | if (bsc->sc_flags & BSSTARTTIMEOUT) |
| { | { |
| #ifdef __FreeBSD__ | #if defined(__DragonFly__) || defined(__FreeBSD__) |
| untimeout(bstimeout, bsc, | untimeout(bstimeout, bsc, |
| bsc->timeout_ch); | bsc->timeout_ch); |
| #else | #else |