]> begriffs open source - freertos/commit
Fix small bugs in Kernel (#998)
authorAniruddha Kanhere <60444055+AniruddhaKanhere@users.noreply.github.com>
Tue, 20 Feb 2024 16:49:41 +0000 (08:49 -0800)
committerGitHub <noreply@github.com>
Tue, 20 Feb 2024 16:49:41 +0000 (22:19 +0530)
commit2fcb0f48b1b93674781b85d8039e5b5c9e43ccf7
tree9ff3fb77eab0fffbb937359796da5d392550c619
parent1a500f1a7418588c4b3f88edd221891ee99d27cd
Fix small bugs in Kernel (#998)

* Fix small bugs

* Cast sizeof to BaseType_t

* Test removing assert to fix UT

* Revert change to tasks.c

Since configIDLE_TASK_NAME must be defined as a string according to
the documentation, the macro will always be NULL terminated. Which
means that the check `if( cIdleName[ xIdleTaskNameIndex ] == ( char ) 0x00 )`
will catch the end of string.

* Update coverity config; Add coverity version; Update pvPortMalloc declaration to match the definitions.

* Add port files to sed command

* Remove warnings about unused parameters in port code

---------

Co-authored-by: Rahul Kar <118818625+kar-rahul-aws@users.noreply.github.com>
MISRA.md
examples/coverity/CMakeLists.txt
examples/coverity/coverity_misra.config
include/FreeRTOS.h
include/portable.h
portable/ThirdParty/GCC/Posix/portmacro.h
portable/template/port.c