RE: Race in kevent

2003-07-11 Thread Harti Brandt
On Thu, 10 Jul 2003, John Baldwin wrote: JB> JB>On 10-Jul-2003 Harti Brandt wrote: JB>> On Wed, 9 Jul 2003, John Baldwin wrote: JB>> JB>> JB>On 09-Jul-2003 Harti Brandt wrote: JB>> JB>> JB>> JB>> Hi, JB>> JB>> JB>> JB>> I just had a crash while typing ^C to a program that has a kevent timer JB>> J

RE: Race in kevent

2003-07-10 Thread John Baldwin
On 10-Jul-2003 Harti Brandt wrote: > On Wed, 9 Jul 2003, John Baldwin wrote: > > JB>On 09-Jul-2003 Harti Brandt wrote: > JB>> > JB>> Hi, > JB>> > JB>> I just had a crash while typing ^C to a program that has a kevent timer > JB>> running. The crash was: > JB>> > JB>> callout_stop > JB>> callout_r

Re: Race in kevent

2003-07-10 Thread Harti Brandt
On Wed, 9 Jul 2003, Eric Jacobs wrote: EJ>On Wed, 9 Jul 2003 15:28:38 +0200 (CEST) EJ> EJ>I didn't think of it in my original post, but perhaps we need a EJ>"thissoftcheck" pointer that works analogously to "nextsoftcheck", EJ>except that instead of being advanced to the next entry in the queue, E

RE: Race in kevent

2003-07-10 Thread Harti Brandt
On Wed, 9 Jul 2003, John Baldwin wrote: JB>On 09-Jul-2003 Harti Brandt wrote: JB>> JB>> Hi, JB>> JB>> I just had a crash while typing ^C to a program that has a kevent timer JB>> running. The crash was: JB>> JB>> callout_stop JB>> callout_reset JB>> filt_timerexpire JB>> softclock JB>> JB>> and ca

RE: Race in kevent

2003-07-09 Thread John Baldwin
On 09-Jul-2003 Harti Brandt wrote: > > Hi, > > I just had a crash while typing ^C to a program that has a kevent timer > running. The crash was: > > callout_stop > callout_reset > filt_timerexpire > softclock > > and callout_stop was accessing freed memory (0xdeadc0e2). After looking > some ti

Re: Race in kevent

2003-07-09 Thread Eric Jacobs
On Wed, 9 Jul 2003 15:28:38 +0200 (CEST) Harti Brandt <[EMAIL PROTECTED]> wrote: > Hi, > > I just had a crash while typing ^C to a program that has a kevent timer > running. The crash was: > > callout_stop > callout_reset > filt_timerexpire > softclock > > and callout_stop was accessing freed m

Race in kevent

2003-07-09 Thread Harti Brandt
Hi, I just had a crash while typing ^C to a program that has a kevent timer running. The crash was: callout_stop callout_reset filt_timerexpire softclock and callout_stop was accessing freed memory (0xdeadc0e2). After looking some time at the filt_timerdetach, callout_stop and softclock I think