2002-09-30 Elena Zannoni <ezannoni@redhat.com>

* event-loop.c (start_event_loop): Rename variable 'result' to
	'gdb_result', to avoid conflicts with upcoming intepreters changes.
This commit is contained in:
Elena Zannoni
2002-09-30 21:25:47 +00:00
parent 5d42dcdf5f
commit 3b8630c3eb
2 changed files with 18 additions and 10 deletions

View File

@ -392,10 +392,12 @@ start_event_loop (void)
longer any event sources registered. */
while (1)
{
int result = catch_errors (gdb_do_one_event, 0, "", RETURN_MASK_ALL);
if (result < 0)
int gdb_result;
gdb_result = catch_errors (gdb_do_one_event, 0, "", RETURN_MASK_ALL);
if (gdb_result < 0)
break;
if (result == 0)
if (gdb_result == 0)
{
/* FIXME: this should really be a call to a hook that is
interface specific, because interfaces can display the