You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
main
smp
V11.1.0
V11.0.1
V11.0.0
V10.6.2
V10.6.1
V10.6.0
V10.5.1
V10.5.0
V10.4.3-LTS-Patch-3
V10.4.6
V10.4.3-LTS-Patch-2
V202110.00-SMP
V10.4.5
V10.4.3-LTS-Patch-1
V10.4.4
V10.4.0-kernel-only
V10.3.0-kernel-only
V10.3.0
PartialReleases
V10.2.1
V10.2.0
V10.1.1
V10.1.0
V10.0.1
V10.0.0
V8.0.1
V9.0.0
V9.0.0rc2
V9.0.0rc1
V8.2.3
V8.2.2
V8.2.1
V8.2.0
V8.2.0rc1
V8.1.2
V8.1.1
V8.1.0
V8.0.0
V8.0.0rc1
V7.6.0
V7.5.3
V7.5.2
V7.5.1
V7.5.0
V7.4.2
V7.4.1
V7.4.0
V7.3.0
V7.2.0
V7.1.1
BackupPoints
V7.1.0
V7.0.2
V7.0.1
V7.0.0
V6.1.1
V6.1.0
V6.0.5
V6.0.4
V6.0.3
V6.0.1
V6.0.0
V5.4.2
V5.4.1
V5.3.1
V5.3.0
V5.2.0
V5.1.2
V5.0.3
V5.0.2
V5.0.0
V4.8.0
V4.7.2
V4.7.1
V4.7.0
V4.6.1
V4.5.0
V4.4.0
V4.3.1
V4.3.0
V4.2.1
V4.2.0
V4.1.3
V4.1.2
V4.1.1
V4.1.0
V4.0.5
V4.0.3
V4.0.2
V4.0.1
V10.3.1-kernel-only
V10.4.1-kernel-only
V10.4.2
V10.4.3
V8.0.0-rc1
V8.2.0-rc1
V9.0.0-rc1
V9.0.0-rc2
${ noResults }
72 lines
2.8 KiB
Markdown
72 lines
2.8 KiB
Markdown
# MISRA Compliance
|
|||
|
|||
FreeRTOS-Kernel conforms to [MISRA C:2012](https://www.misra.org.uk/misra-c)
|
|||
guidelines, with the deviations listed below. Compliance is checked with
|
|||
Coverity static analysis. Since the FreeRTOS kernel is designed for
|
|||
small-embedded devices, it needs to have a very small memory footprint and
|
|||
has to be efficient. To achieve that and to increase the performance, it
|
|||
deviates from some MISRA rules. The specific deviations, suppressed inline,
|
|||
are listed below.
|
|||
|
|||
Additionally, [MISRA configuration](#misra-configuration) contains project
|
|||
wide deviations.
|
|||
|
|||
### Suppressed with Coverity Comments
|
|||
To find the violation references in the source files run grep on the source code
|
|||
with ( Assuming rule 8.4 violation; with justification in point 1 ):
|
|||
```
|
|||
grep 'MISRA Ref 8.4.1' . -rI
|
|||
```
|
|||
|
|||
#### Rule 8.4
|
|||
|
|||
_Ref 8.4.1_
|
|||
|
|||
- MISRA C:2012 Rule 8.4: A compatible declaration shall be visible when an
|
|||
object or function with external linkage is defined.
|
|||
This rule requires that a compatible declaration is made available
|
|||
in a header file when an object with external linkage is defined.
|
|||
pxCurrentTCB(s) is defined with external linkage but it is only
|
|||
referenced from the assembly code in the port files. Therefore, adding
|
|||
a declaration in header file is not useful as the assembly code will
|
|||
still need to declare it separately.
|
|||
|
|||
### MISRA configuration
|
|||
|
|||
Copy below content to `misra.conf` to run Coverity on FreeRTOS-Kernel.
|
|||
|
|||
```
|
|||
// MISRA C-2012 Rules
|
|||
{
|
|||
version : "2.0",
|
|||
standard : "c2012",
|
|||
title: "Coverity MISRA Configuration",
|
|||
deviations : [
|
|||
// Disable the following rules.
|
|||
{
|
|||
deviation: "Directive 4.8",
|
|||
reason: "HeapRegion_t and HeapStats_t are used only in heap files but declared in portable.h which is included in multiple source files. As a result, these definitions appear in multiple source files where they are not used."
|
|||
},
|
|||
{
|
|||
deviation: "Directive 4.9",
|
|||
reason: "FreeRTOS-Kernel is optimised to work on small micro-controllers. To achieve that, function-like macros are used."
|
|||
},
|
|||
{
|
|||
deviation: "Rule 1.2",
|
|||
reason: "The __attribute__ tags are used via macros which are defined in port files."
|
|||
},
|
|||
{
|
|||
deviation: "Rule 3.1",
|
|||
reason: "We post HTTP links in code comments which contain // inside comments blocks."
|
|||
},
|
|||
{
|
|||
deviation: "Rule 8.7",
|
|||
reason: "API functions are not used by the library outside of the files they are defined; however, they must be externally visible in order to be used by an application."
|
|||
},
|
|||
{
|
|||
deviation: "Rule 11.5",
|
|||
reason: "Allow casts from `void *`. List owner, pvOwner, is stored as `void *` and are cast to various types for use in functions."
|
|||
}
|
|||
]
|
|||
}
|
|||
```
|