35a36
> #include "systemc/ext/core/messages.hh"
123c124
< SC_REPORT_ERROR("Undefined process control interaction",
---
> SC_REPORT_ERROR(sc_core::SC_ID_PROCESS_CONTROL_CORNER_CASE_,
144,145c145
< SC_REPORT_ERROR(
< "(E572) a process may not be killed before it is initialized",
---
> SC_REPORT_ERROR(sc_core::SC_ID_KILL_PROCESS_WHILE_UNITIALIZED_,
173,175c173,174
< SC_REPORT_ERROR(
< "(E573) a process may not be asynchronously reset while"
< "the simulation is not running", name());
---
> SC_REPORT_ERROR(sc_core::SC_ID_RESET_PROCESS_WHILE_NOT_RUNNING_,
> name());
202,206c201,202
< if (::sc_core::sc_get_status() != ::sc_core::SC_RUNNING) {
< SC_REPORT_ERROR(
< "(E574) throw_it not allowed unless simulation is running ",
< name());
< }
---
> if (::sc_core::sc_get_status() != ::sc_core::SC_RUNNING)
> SC_REPORT_ERROR(sc_core::SC_ID_THROW_IT_WHILE_NOT_RUNNING_, name());
213,214c209
< SC_REPORT_WARNING("(W556) throw_it on method/non-running process "
< "is being ignored ", name());
---
> SC_REPORT_WARNING(sc_core::SC_ID_THROW_IT_IGNORED_, name());