Project

General

Profile

User story #1178

RealTimeThread CPUs parameter changed to uint64

Added by Giuseppe Ferro almost 3 years ago. Updated almost 3 years ago.

Status:
Closed
Priority:
Normal
Assignee:
-
Target version:
-
Start date:
22.06.2022
Due date:
% Done:

0%

Estimated time:
Git branch (link):
Git merge to develop (link):
SVN commit (link/?p=rev):

Description

--- Source/Core/BareMetal/L5GAMs/RealTimeThread.cpp 2022-02-02 09:30:34.000000000 0000
+
+ Source/Core/BareMetal/L5GAMs/RealTimeThread.cpp 2022-04-22 07:44:56.698278306 0000
@ -185,14 +185,15 @
}^M
if (ret) {^M
// TODO using better way to read/write BitSet^M
- uint32 cpuConfig = 0u;^M
uint64 cpuConfig = 0ull;^M
if (!data.Read("CPUs", cpuConfig)) {^M
REPORT_ERROR(ErrorManagement::Information, "No CPUs defined for the RealTimeThread %s", GetName());^M
}^M
if (!data.Read("StackSize", stackSize)) {^M
REPORT_ERROR(ErrorManagement::Information, "No StackSize defined for the RealTimeThread %s", GetName());^M
}^M
- cpuMask = ProcessorType(cpuConfig);^M
+ BitSet cpuset(cpuConfig);^M
+ cpuMask = ProcessorType(cpuset);^M
}^M
^M
return ret;^M

History

#1 Updated by Giuseppe Ferro almost 3 years ago

  • Status changed from New to Code: Impl

#2 Updated by Giuseppe Ferro almost 3 years ago

branch 1178_uint64_RealTimeThread_CPU
test coverage ok

#3 Updated by Giuseppe Ferro almost 3 years ago

  • Status changed from Code: Impl to Unit: Rev

#4 Updated by Giuseppe Ferro almost 3 years ago

  • Assignee changed from Giuseppe Ferro to André Neto

#5 Updated by André Neto almost 3 years ago

  • Assignee deleted (André Neto)
  • Status changed from Unit: Rev to Closed

Merged at 0808063d5224be4d95d90665060b29c2a74caf1a

Also available in: Atom PDF