Thu 29 Dec 2005 09:57:19 PM UTC, original submission:
From http://bugs.debian.org/161231
From: -unavailable- (Neal H. Walfield)
To: -unavailable-
Subject: crash server crashing
Date: 17 Sep 2002 15:07:20 -0400
Package: Hurd
Version: 20020804-1
The crash server is crashing. I have seen the following assertion
triggered:
crash: ../../exec/elfcore.c:55: fetch_thread_regset: Assertion
`sizeof (struct i386_thread_state) == sizeof (prgrset_t)' failed.
That is, compile:
#include <assert.h>
int main (void) { assert (0 == 1); return 0; }
then run and watch the fun.
I have not examined the cause nor will I have time until Thursday at
the earliest.
Thanks.
From: Roland McGrath <roland@gnu.org>
To: -unavailable- (Neal H. Walfield), -unavailable-
Cc: -unavailable-
Subject: Re: Bug #161231: crash server crashing
Date: Tue, 17 Sep 2002 17:06:46 -0400 (EDT)
> The crash server is crashing. I have seen the following assertion
> triggered:
>
> crash: ../../exec/elfcore.c:55: fetch_thread_regset: Assertion
> `sizeof (struct i386_thread_state) == sizeof (prgrset_t)' failed.
D'oh. That's a compile-time constant crash. Clearly noone has tried this
code before at all. That's my bad for failing to notice the extra
trapno,err words in sys/ucontext.h. The fix is trivial enough.
|