[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:
@ -8,7 +8,7 @@ root = true
|
|||||||
end_of_line = lf
|
end_of_line = lf
|
||||||
insert_final_newline = true
|
insert_final_newline = true
|
||||||
|
|
||||||
[{**/*.cc,**/*.hpp,**/*.ah,**/*.ah.in}]
|
[{**/*.cc,**/*.hpp,**/*.ah,**/*.ah.in,**/*.proto}]
|
||||||
indent_style = tab
|
indent_style = tab
|
||||||
indent_size = 4
|
indent_size = 4
|
||||||
|
|
||||||
|
|||||||
@ -373,13 +373,13 @@ void GenericExperiment::cb_after_resume(fail::BaseListener *event) {
|
|||||||
m_log << "memory upper outerspace triggered"
|
m_log << "memory upper outerspace triggered"
|
||||||
<< LOG_MEM_LISTENER(l_mem_outerspace)
|
<< LOG_MEM_LISTENER(l_mem_outerspace)
|
||||||
<< std::endl;
|
<< std::endl;
|
||||||
handleEvent(*result, result->WRITE_OUTERSPACE,
|
handleEvent(*result, result->ACCESS_OUTERSPACE,
|
||||||
l_mem_outerspace.getTriggerAddress());
|
l_mem_outerspace.getTriggerAddress());
|
||||||
} else if (event == &l_mem_lowerspace) {
|
} else if (event == &l_mem_lowerspace) {
|
||||||
m_log << "memory lower outerspace triggered"
|
m_log << "memory lower outerspace triggered"
|
||||||
<< LOG_MEM_LISTENER(l_mem_lowerspace)
|
<< LOG_MEM_LISTENER(l_mem_lowerspace)
|
||||||
<< std::endl;
|
<< std::endl;
|
||||||
handleEvent(*result, result->WRITE_LOWERSPACE,
|
handleEvent(*result, result->ACCESS_OUTERSPACE,
|
||||||
l_mem_lowerspace.getTriggerAddress());
|
l_mem_lowerspace.getTriggerAddress());
|
||||||
}
|
}
|
||||||
#undef LOG_MEM_LISTENER
|
#undef LOG_MEM_LISTENER
|
||||||
|
|||||||
@ -24,7 +24,7 @@ message GenericExperimentMessage {
|
|||||||
TIMEOUT = 8;
|
TIMEOUT = 8;
|
||||||
TRAP = 9;
|
TRAP = 9;
|
||||||
WRITE_TEXTSEGMENT = 10;
|
WRITE_TEXTSEGMENT = 10;
|
||||||
WRITE_OUTERSPACE = 11;
|
ACCESS_OUTERSPACE = 11;
|
||||||
|
|
||||||
SDC = 12;
|
SDC = 12;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user