Bug #1015
Thread Functions array
Status:
New
Priority:
Normal
Assignee:
-
Target version:
-
Start date:
18.01.2022
Due date:
% Done:
0%
Estimated time:
Description
Ciao Andrè,
se uso questa sintassi:
+Threads = {
Class = "ReferenceContainer"
+Thread1 = {
Class = "RealTimeThread"
CPUs = "0x1"
Functions = { "GAMTimer" "GAMFixed1" "GAMDisplay"
}
}
}
con Functions = { "GAMTimer" "GAMFixed1" "GAMDisplay" }
con le " l'App non parte.
ho messo una pezza eliminado l'ultimo char del function path in RealTimeThread.cpp
@ -105,7 +106,11
@ bool RealTimeThread::ConfigureArchitecture() {
StreamString functionPath = absoluteFunctionPath;
/*lint e{613} Never NULL if (functions NULL) because
(numberOfFunctions 0) */
functionPath = functions[i].Buffer();
char8 * pt=new char[functions[i].Size()-1];
StringHelper::Substr(0,functions[i].Size()-1,functions[i].Buffer(),pt);
+ functionPath = pt;//functions[i].Buffer();
REPORT_ERROR(ErrorManagement::Debug, "absoluteFunctionPath
%s ", functionPath.Buffer());
// find the functions specified in cdb
/*lint e{613} Never enters here if (functions NULL)
because (numberOfFunctions 0) */
@ -129,7 +134,7
@ bool RealTimeThread::ConfigureArchitecture() {
}
else {
/*lint -e{613} Never enter here if (functions
NULL) because (numberOfFunctions 0) */
REPORT_ERROR(ErrorManagement::FatalError, "Undefined
%s", functions[i].Buffer());
+ REPORT_ERROR(ErrorManagement::FatalError, "Undefined
%s-", functions[i].Buffer());
}