Re: seg fault in mutex_queue_enq

1999-07-16 Thread Thomas Gellekum
Daniel Eischen eisc...@vigrid.com writes: Just tell me what to do, and I'll do it :-) I won't go that far, but I'd suggest keeping the versions in -current and -stable in sync (after testing new stuff in -current, of course). There's (yet) no technical reason not to do so and it makes

Re: seg fault in mutex_queue_enq

1999-07-15 Thread Daniel Eischen
Thomas Gellekum [EMAIL PROTECTED] wrote: Daniel Eischen [EMAIL PROTECTED] writes: There are some bugs in libc_r in stable that have been fixed in -current. I think the one that you've hit is an uninitialized TAILQ_HEAD in a statically declared mutex (in localtime). It's probably

Re: seg fault in mutex_queue_enq

1999-07-15 Thread Thomas Gellekum
Daniel Eischen [EMAIL PROTECTED] writes: The libc_r version number was bumped in -current because of the addition of poll(). Is this allowed in -stable, or something that waits for a -RELEASE? Jordan should have to say something about this. AFAIR, bumps are allowed but only by one between

Re: seg fault in mutex_queue_enq

1999-07-15 Thread Mike Meyer
On Thu, 15 Jul 1999, Jordan K. Hubbard wrote: :- Jordan should have to say something about this. AFAIR, bumps are :- allowed but only by one between releases. We will have to provide :- libc_r.so.3 in /usr/lib/compat/compat3x, though (we'll have to do this :- anyway by the time 4.x is released).

Re: seg fault in mutex_queue_enq

1999-07-15 Thread Daniel Eischen
Jordan should have to say something about this. AFAIR, bumps are allowed but only by one between releases. We will have to provide libc_r.so.3 in /usr/lib/compat/compat3x, though (we'll have to do this anyway by the time 4.x is released). I'd prefer not to bump it... John Birrell and

Re: seg fault in mutex_queue_enq

1999-07-15 Thread Thomas Gellekum
Daniel Eischen eisc...@vigrid.com writes: There are some bugs in libc_r in stable that have been fixed in -current. I think the one that you've hit is an uninitialized TAILQ_HEAD in a statically declared mutex (in localtime). It's probably about time for a MFC. If someone wants to give me

Re: seg fault in mutex_queue_enq

1999-07-15 Thread Daniel Eischen
Thomas Gellekum t...@ihf.rwth-aachen.de wrote: Daniel Eischen eisc...@vigrid.com writes: There are some bugs in libc_r in stable that have been fixed in -current. I think the one that you've hit is an uninitialized TAILQ_HEAD in a statically declared mutex (in localtime). It's

Re: seg fault in mutex_queue_enq

1999-07-15 Thread Thomas Gellekum
Daniel Eischen eisc...@vigrid.com writes: The libc_r version number was bumped in -current because of the addition of poll(). Is this allowed in -stable, or something that waits for a -RELEASE? Jordan should have to say something about this. AFAIR, bumps are allowed but only by one between

Re: seg fault in mutex_queue_enq

1999-07-15 Thread Thomas Gellekum
Thomas Gellekum t...@ihf.rwth-aachen.de writes: libc_r.so.3 in /usr/lib/compat/compat3x, though (we'll have to do this /usr/src/lib/compat/compat3x Sorry. tg To Unsubscribe: send mail to majord...@freebsd.org with unsubscribe freebsd-hackers in the body of the message

Re: seg fault in mutex_queue_enq

1999-07-15 Thread Jordan K. Hubbard
Jordan should have to say something about this. AFAIR, bumps are allowed but only by one between releases. We will have to provide libc_r.so.3 in /usr/lib/compat/compat3x, though (we'll have to do this anyway by the time 4.x is released). I'd prefer not to bump it... John Birrell and I are

Re: seg fault in mutex_queue_enq

1999-07-15 Thread Mike Meyer
On Thu, 15 Jul 1999, Jordan K. Hubbard wrote: :- Jordan should have to say something about this. AFAIR, bumps are :- allowed but only by one between releases. We will have to provide :- libc_r.so.3 in /usr/lib/compat/compat3x, though (we'll have to do this :- anyway by the time 4.x is released).

Re: seg fault in mutex_queue_enq

1999-07-15 Thread Daniel Eischen
Jordan should have to say something about this. AFAIR, bumps are allowed but only by one between releases. We will have to provide libc_r.so.3 in /usr/lib/compat/compat3x, though (we'll have to do this anyway by the time 4.x is released). I'd prefer not to bump it... John Birrell and I

Re: seg fault in mutex_queue_enq

1999-07-15 Thread Jordan K. Hubbard
I don't care one way or the other. I could leave out the wrapped poll() very easily and avoid the issue all together. This would provide -stable with everything -current has, except of course poll(). I'd prefer to add poll, though... I'm OK with adding poll(), it just seemed odd that the

Re: seg fault in mutex_queue_enq

1999-07-14 Thread Daniel Eischen
Kip Macy wrote: In the mean time, you can grab libc_r/uthread/* from -current and rebuild libc_r under -stable. Yes, I am running -stable. I did upgrade my libc_r a few weeks ago as a result of a problem with infinite recursion in write. When was this bug fixed? The fix for static

Re: seg fault in mutex_queue_enq

1999-07-14 Thread Thomas Gellekum
Daniel Eischen [EMAIL PROTECTED] writes: There are some bugs in libc_r in stable that have been fixed in -current. I think the one that you've hit is an uninitialized TAILQ_HEAD in a statically declared mutex (in localtime). It's probably about time for a MFC. If someone wants to give me

seg fault in mutex_queue_enq

1999-07-14 Thread Kip Macy
Can someone familiar with the new threads code tell me what is causing the following segmentation fault. Thanks. -Kip Program terminated with signal 11, Segmentation fault. #0 0x82fb15d in mutex_queue_enq (mutex=0x83c3a54, pthread=0x8594e00) at

Re: seg fault in mutex_queue_enq

1999-07-14 Thread Daniel Eischen
Can someone familiar with the new threads code tell me what is causing the following segmentation fault. Thanks. -Kip Program terminated with signal 11, Segmentation fault. #0 0x82fb15d in mutex_queue_enq (mutex=0x83c3a54, pthread=0x8594e00) at

Re: seg fault in mutex_queue_enq

1999-07-14 Thread Kip Macy
On Wed, 14 Jul 1999, Daniel Eischen wrote: Can someone familiar with the new threads code tell me what is causing the following segmentation fault. Thanks. -Kip Program terminated with signal 11, Segmentation fault. #0 0x82fb15d in

Re: seg fault in mutex_queue_enq

1999-07-14 Thread Daniel Eischen
Kip Macy wrote: In the mean time, you can grab libc_r/uthread/* from -current and rebuild libc_r under -stable. Yes, I am running -stable. I did upgrade my libc_r a few weeks ago as a result of a problem with infinite recursion in write. When was this bug fixed? The fix for static