User story #116
MARTe-EX-F-1.3.6: When awaiting on any type of semaphore the framework developer shall know if the lock was released due to a timeout or due to any type of error.
0%
Description
Implement requirement MARTe-EX-F-1.3.6 based on the original MARTe implementation
Note: It is crucial that framework developers know why the shared resource was unblocked. Usually, when this happens due to a timeout or an error, the shared resource is no longer valid.
Source code files modified¶
- Source/Core/L0Portability/EventSem.cpp
- Source/Core/L0Portability/EventSem.h
- Source/Core/L0Portability/FastPollingMutexSem.h
- Source/Core/L0Portability/GeneralDefinitions.h
- Source/Core/L0Portability/MutexSem.cpp
- Source/Core/L0Portability/MutexSem.h
- Source/Core/L0Portability/OperatingSystem/Linux/EventSemOS.h
- Source/Core/L0Portability/OperatingSystem/Linux/MutexSemOS.h
- Source/Core/L0Portability/OperatingSystem/Windows/EventSemOS.h
- Source/Core/L0Portability/OperatingSystem/Windows/MutexSemOS.h
Architecture & design review¶
Date of the review: 12/06/2015
Person who did the review: André Neto
Version of architecture & design document: N/A. As per the original MARTe implementation, this is a support function and does not require formal design in UML.
Result of review: N/A
List of non-conformities: N/A
Code and documentation review¶
Date of the review: 24/07/2015
Person who did the review: Ivan Herrero
Result of review: PASS
List of non-conformities: N/A
Unit test review¶
Date of the review: 24/07/2015
Person who did the review: Ivan Herrero
Result of coverage tests review: PASS
Result of functional tests review: PASS
Result of review: PASS
List of non-conformities: N/A
Unit testing coverage note: Some error paths not exercised
Associated revisions
Corrected files accordingly with revision.
#116
US #116 EventSemTest
Note that the work is not complited yet.
List of changes:
- TestCopyConstructor2Sem added.
#116 - Minor formatting corrections (following template rules)
History
#1 Updated by Riccardo Vitelli almost 10 years ago
- Target version changed from Backlog to 0.1
- Start date deleted (
29.05.2015) - Estimated time set to 8.00 h
#2 Updated by Riccardo Vitelli almost 10 years ago
- Status changed from New to Arch: Rev
#3 Updated by Riccardo Vitelli almost 10 years ago
- Assignee set to André Neto
#4 Updated by André Neto almost 10 years ago
- Description updated (diff)
#5 Updated by Ivan Herrero almost 10 years ago
- Status changed from Arch: Rev to Code: Impl
#6 Updated by Ivan Herrero almost 10 years ago
- Assignee changed from André Neto to Giuseppe Ferro
#7 Updated by Ivan Herrero almost 10 years ago
- Assignee changed from Giuseppe Ferro to Ivan Herrero
#8 Updated by Ivan Herrero almost 10 years ago
- Status changed from Code: Impl to Code: Rev
#9 Updated by Ivan Herrero almost 10 years ago
- Description updated (diff)
#10 Updated by Ivan Herrero almost 10 years ago
- Assignee deleted (
Ivan Herrero)
#11 Updated by Ivan Herrero almost 10 years ago
- Status changed from Code: Rev to Code: Impl
#12 Updated by Riccardo Vitelli almost 10 years ago
- Assignee set to Giuseppe Ferro
#13 Updated by Riccardo Vitelli almost 10 years ago
- Status changed from Code: Impl to Code: Rev
#14 Updated by Riccardo Vitelli almost 10 years ago
- Assignee changed from Giuseppe Ferro to Ivan Herrero
#15 Updated by Riccardo Vitelli almost 10 years ago
- Status changed from Code: Rev to Code: Impl
#16 Updated by Riccardo Vitelli almost 10 years ago
- Assignee changed from Ivan Herrero to Giuseppe Ferro
#17 Updated by André Neto almost 10 years ago
- Status changed from Code: Impl to Code: Rev
#18 Updated by Ivan Herrero almost 10 years ago
- Description updated (diff)
Code and documentation review made on revision ec87167 with result "FAIL".
#19 Updated by Riccardo Vitelli almost 10 years ago
- Assignee deleted (
Giuseppe Ferro)
#20 Updated by Riccardo Vitelli almost 10 years ago
- Status changed from Code: Rev to Unit: Impl
#21 Updated by Giuseppe Ferro almost 10 years ago
- Assignee set to Giuseppe Ferro
#22 Updated by Riccardo Vitelli almost 10 years ago
- Target version changed from 0.1 to 0.2
#23 Updated by Riccardo Vitelli over 9 years ago
- Assignee deleted (
Giuseppe Ferro)
#24 Updated by Llorenc Capella over 9 years ago
- Assignee set to Llorenc Capella
#25 Updated by Llorenc Capella over 9 years ago
- Status changed from Unit: Impl to 13
#26 Updated by Llorenc Capella over 9 years ago
- Status changed from 13 to Unit: Rev
#27 Updated by Llorenc Capella over 9 years ago
- Assignee deleted (
Llorenc Capella)
#28 Updated by Ivan Herrero over 9 years ago
- Assignee set to Ivan Herrero
#29 Updated by Ivan Herrero over 9 years ago
- Assignee deleted (
Ivan Herrero)
#30 Updated by Ivan Herrero over 9 years ago
- Assignee set to Ivan Herrero
#31 Updated by Ivan Herrero over 9 years ago
- Status changed from Unit: Rev to Closed
- Assignee deleted (
Ivan Herrero) - Description updated (diff)
Unit test review made on revision 3860c7d.
No branch used used for this used story.
Added the possibility to know the error type in any function (moved ErrorType enum in GeneralDefinitions.h).
Added the error type return support in all semaphore objects.
#116