Lines Matching +full:- +full:c
3 FreeRTOS-Kernel conforms to [MISRA C:2012](https://www.misra.org.uk/misra-c)
6 small-embedded devices, it needs to have a very small memory footprint and
18 grep 'MISRA Ref 8.4.1' . -rI
23 MISRA C:2012 Rule 8.4: A compatible declaration shall be visible when an
27 - pxCurrentTCB(s) is defined with external linkage but it is only referenced
33 - xQueueRegistry is defined with external linkage because it is accessed by the
39 MISRA C:2012 Rule 8.6: An identifier with external linkage shall have exactly
43 - This rule prohibits an identifier with external linkage to have multiple
48 MISRA C:2012 Rule 11.1: Conversions shall not be performed between a pointer to
52 - The pointer to function is casted into void to avoid unused parameter
58 MISRA C:2012 Rule 11.3: A cast shall not be performed between a pointer to
62 - This rule prohibits casting a pointer to object into a pointer to a
76 MISRA C:2012 Rule 11.5: A conversion should not be performed from pointer to
83 - The memory blocks returned by pvPortMalloc() are guaranteed to meet the
89 - The conversion from a pointer to void into a pointer to EventGroup_t is
95 - The conversion from a pointer to void in list macros for list item owner
100 - The conversion from a pointer to void into a pointer to EventGroup_t is
106 - The conversion from a pointer to void into a pointer to uint8_t is safe
112 MISRA C-2012 Rule 21.6: The Standard Library input/output functions shall not
116 - The Standard Library function snprintf is used in vTaskListTasks and