mirror of
https://github.com/FreeRTOS/FreeRTOS-Kernel.git
synced 2025-12-07 05:34:59 -05:00
Fix MISRA C 2012 Rule 9.3 violations
This commit is contained in:
parent
ba1e2dad3c
commit
5c52c70466
1 changed files with 1 additions and 1 deletions
|
|
@ -245,7 +245,7 @@
|
|||
/**
|
||||
* @brief Kernel object pool.
|
||||
*/
|
||||
PRIVILEGED_DATA static KernelObject_t xKernelObjectPool[ configPROTECTED_KERNEL_OBJECT_POOL_SIZE ] = { NULL };
|
||||
PRIVILEGED_DATA static KernelObject_t xKernelObjectPool[ configPROTECTED_KERNEL_OBJECT_POOL_SIZE ] = { 0 };
|
||||
/*-----------------------------------------------------------*/
|
||||
|
||||
static int32_t MPU_GetFreeIndexInKernelObjectPool( void ) /* PRIVILEGED_FUNCTION */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue