Date: Sun, 19 May 2002 13:30:39 +0300 (IDT) From: Eli Zaretskii X-Sender: eliz AT is To: Laurynas Biveinis cc: sandmann AT clio DOT rice DOT edu, djgpp-workers AT delorie DOT com Subject: Re: Re[4]: emacs under w2k In-Reply-To: <2242535597.20020519121427@softhome.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp-workers AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp-workers AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Sun, 19 May 2002, Laurynas Biveinis wrote: > Program received signal SIGSEGV, Segmentation fault. > 0x00001254 in dos_alloc_ok () > > (gdb) disas 0x123a 0x1254 > Dump of assembler code from 0x123a to 0x1254: > 0x123a : je 0x12a8 > 0x123c : mov %eax,0x206510 > 0x1241 : mov %eax,%edi > 0x1243 : mov %fs:0x10,%ecx > 0x124a : shr $0x2,%ecx > 0x124d : xor %esi,%esi > 0x124f : push %ds > 0x1250 : push %fs > 0x1252 : pop %ds > 0x1253 : cld > End of assembler dump. You ended the disassembly prematurely, I think: the exception happened on the very next line. Here's what follows the `cld' line: rep movsl This copies the code of the 16-bit helper to the memory buffer we allocated earlier. So both crashes are somehow related to the 16-bit helper. It would be interesting to know whether the other crash indeed happens inside the 16-bit helper or not. See my other mail for some advice about avoiding false alarms. > I am unable to set breakpoint in dos_alloc_ok, no matter if I try by > function or by address. What's wrong here? dos_alloc_ok is not an extern symbol, so it might be tricky. However, I've just tried "break dos_alloc_ok", and it did work for me. I didn't try to run Emacs with that breakpoint, though; do you mean that the breakpoint seems to be set, but never breaks? As for setting a breakpoint by address, did you remember to prepend an asterisk to the address, like this: (gdb) b *0x1252 ?