Date: Mon, 24 May 1999 16:24:05 +0300 (IDT) From: Eli Zaretskii X-Sender: eliz AT is To: pavenis AT lanet DOT lv cc: djgpp-workers AT delorie DOT com Subject: Re: gdb 4.18 for DJGPP (alpha) In-Reply-To: Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp-workers AT delorie DOT com X-Mailing-List: djgpp-workers AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Mon, 24 May 1999 pavenis AT lanet DOT lv wrote: > > { > > if (a_tss.tss_irqn == sig_map[i].go32_sig) > > { > > #if __DJGPP_MINOR__ < 3 > > if ((status->value.sig = sig_map[i].gdb_sig) != > > TARGET_SIGNAL_TRAP) > > status->kind = TARGET_WAITKIND_SIGNALLED; > > #else > > status->value.sig = sig_map[i].gdb_sig; > > status->kind = TARGET_WAITKIND_STOPPED; > > #endif > > break; > > } > > } > > > About breakpoints: > They seems to work normally with my binary gdb-4.18. What is the value of __DJGPP_MINOR__ in your installation? In other words, which one of the two branches in the fragment above does your binary use?