diff options
author | Andrew Cagney <cagney@redhat.com> | 1998-05-21 08:17:31 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 1998-05-21 08:17:31 +0000 |
commit | 643878d01705dbc37908583984ab14da155a8b28 (patch) | |
tree | 999f66b78bae2631023aeb0d882345c0161de76d /sim/common/sim-module.c | |
parent | 78af0a0094aee006d64d8dfae00e276a940864fd (diff) | |
download | gdb-643878d01705dbc37908583984ab14da155a8b28.zip gdb-643878d01705dbc37908583984ab14da155a8b28.tar.gz gdb-643878d01705dbc37908583984ab14da155a8b28.tar.bz2 |
* sim-hw.c: Include ctype.h.
(do_hw_poll_read): Do not assume EAGAIN.
Diffstat (limited to 'sim/common/sim-module.c')
-rw-r--r-- | sim/common/sim-module.c | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/sim/common/sim-module.c b/sim/common/sim-module.c index 0fb5471..970e725 100644 --- a/sim/common/sim-module.c +++ b/sim/common/sim-module.c @@ -23,6 +23,12 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "sim-options.h" #include "sim-assert.h" +/* start-sanitize-am30 */ +#if WITH_HW +#include "sim-hw.h" +#endif +/* end-sanitize-am30 */ + #include "libiberty.h" /* List of all modules. */ @@ -50,11 +56,16 @@ static MODULE_INSTALL_FN * const modules[] = { scache_install, #endif #ifdef SIM_HAVE_MODEL - model_install, + sim_model_install, #endif #ifdef SIM_HAVE_BREAKPOINTS sim_break_install, #endif + /* start-sanitize-am30 */ +#if WITH_HW + sim_hw_install, +#endif + /* end-sanitize-am30 */ /* Configured in [simulator specific] additional modules. */ #ifdef MODULE_LIST MODULE_LIST |