[generic-experiment] WRITE_OUTERSPACE -> ACCESS_OUTERSPACE

This is a breaking change. However, the name is and always was
misleading. Therefore, we change it to the correct name.
This commit is contained in:
Christian Dietrich
2020-12-15 09:58:30 +01:00
parent d35ae687b0
commit 4489537b4d
3 changed files with 4 additions and 4 deletions

View File

@ -8,7 +8,7 @@ root = true
end_of_line = lf
insert_final_newline = true
[{**/*.cc,**/*.hpp,**/*.ah,**/*.ah.in}]
[{**/*.cc,**/*.hpp,**/*.ah,**/*.ah.in,**/*.proto}]
indent_style = tab
indent_size = 4

View File

@ -373,13 +373,13 @@ void GenericExperiment::cb_after_resume(fail::BaseListener *event) {
m_log << "memory upper outerspace triggered"
<< LOG_MEM_LISTENER(l_mem_outerspace)
<< std::endl;
handleEvent(*result, result->WRITE_OUTERSPACE,
handleEvent(*result, result->ACCESS_OUTERSPACE,
l_mem_outerspace.getTriggerAddress());
} else if (event == &l_mem_lowerspace) {
m_log << "memory lower outerspace triggered"
<< LOG_MEM_LISTENER(l_mem_lowerspace)
<< std::endl;
handleEvent(*result, result->WRITE_LOWERSPACE,
handleEvent(*result, result->ACCESS_OUTERSPACE,
l_mem_lowerspace.getTriggerAddress());
}
#undef LOG_MEM_LISTENER

View File

@ -24,7 +24,7 @@ message GenericExperimentMessage {
TIMEOUT = 8;
TRAP = 9;
WRITE_TEXTSEGMENT = 10;
WRITE_OUTERSPACE = 11;
ACCESS_OUTERSPACE = 11;
SDC = 12;