2002-04-04 Michael Snyder <msnyder@redhat.com>

* gdb.base/ovlymgr.c: Add overlay event breakpoint support.
This commit is contained in:
Michael Snyder 2002-04-04 19:48:09 +00:00
parent 61bef6f1a0
commit b22ad7a776
2 changed files with 15 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2002-04-04 Michael Snyder <msnyder@redhat.com>
* gdb.base/ovlymgr.c: Add overlay event breakpoint support.
2002-04-03 Daniel Jacobowitz <drow@mvista.com>
* lib/gdb.exp (gdb_test): Move -notransfer inside of gdb_expect.

View File

@ -30,6 +30,15 @@ FlushCache (void)
#endif
}
/* _ovly_debug_event:
* Debuggers may set a breakpoint here, to be notified
* when the overlay table has been modified.
*/
static void
_ovly_debug_event (void)
{
}
/* OverlayLoad:
* Copy the overlay into its runtime region,
* and mark the overlay as "mapped".
@ -57,7 +66,7 @@ OverlayLoad (unsigned long ovlyno)
_ovly_table[ovlyno][SIZE]);
FlushCache ();
_ovly_debug_event ();
return TRUE;
}
@ -80,6 +89,7 @@ OverlayUnload (unsigned long ovlyno)
_ovly_table[ovlyno][VMA],
_ovly_table[ovlyno][SIZE]);
_ovly_debug_event ();
return TRUE;
}