]> begriffs open source - freertos/commit
Feature/fixing clang gnu compiler warnings (#620)
authorphelter <paulheltera@gmail.com>
Thu, 23 Feb 2023 18:05:04 +0000 (10:05 -0800)
committerGitHub <noreply@github.com>
Thu, 23 Feb 2023 18:05:04 +0000 (23:35 +0530)
commit8cd5451ad50819b3a969b250ac1fd3528ef56ece
tree8a240d8cef59dbe0ba1bdec4aad64fee2814fa4d
parent5d056010455613d7cfda28f27da26573000773fd
Feature/fixing clang gnu compiler warnings (#620)

* Adding in ability to support a library for freertos_config and a custom freertos_kernel_port (#558)

* Using single name definition for libraries everywhere. (#558)

* Supporting backwards compatibility with FREERTOS_CONFIG_FILE_DIRECTORY (#571)

* Removing compiler warnings for GNU and Clang. (#571)

* Added in documentation on how to consume from a main project. Added default PORT selection for native POSIX and MINGW platforms.

* Only adding freertos_config if it exists. Removing auto generation of it from a FREERTOS_CONFIG_FILE_DIRECTORY.

* Fixing clang and gnu compiler warnings.

* Adding in project information and how to compile for GNU/clang

* Fixing compiler issue with unused variable - no need to declare variable.

* Adding in compile warnings for linux builds that kernel is okay with using.

* Fixing more extra-semi-stmt clang warnings.

* Moving definition of hooks into header files if features are enabled.

* Fixing formatting with uncrustify.

* Fixing merge conflicts with main merge.

* Fixing compiler errors due to merge issues and formatting.

* Fixing Line feeds.

* Adding 'portNORETURN' into portmacros.h. Other Updates based on PR request

* Further clean-up of clang and clang-tidy issues.

* Removing compiler specific pragmas from common c files.

* Fixing missing lexicon entry and uncrustify formatting changes.

* Resolving merge issue multiple defnitions of proto for prvIdleTask

* Fixing formatting issues that are not covered by uncrustify. Use clang-tidy instead if you want this level of control.

* More uncrustify formatting issues.

* Fixing extra bracket in #if statement.

---------

Co-authored-by: Gaurav-Aggarwal-AWS <33462878+aggarg@users.noreply.github.com>
38 files changed:
.github/lexicon.txt
CMakeLists.txt
event_groups.c
include/FreeRTOS.h
include/list.h
include/queue.h
include/stack_macros.h
include/task.h
include/timers.h
portable/ARMv8M/non_secure/portable/GCC/ARM_CM23/portmacro.h
portable/ARMv8M/non_secure/portable/GCC/ARM_CM23_NTZ/portmacro.h
portable/ARMv8M/non_secure/portable/GCC/ARM_CM33/portmacro.h
portable/ARMv8M/non_secure/portable/GCC/ARM_CM33_NTZ/portmacro.h
portable/ARMv8M/non_secure/portable/GCC/ARM_CM55/portmacro.h
portable/ARMv8M/non_secure/portable/GCC/ARM_CM85/portmacro.h
portable/GCC/ARM_CM0/portmacro.h
portable/GCC/ARM_CM23/non_secure/portmacro.h
portable/GCC/ARM_CM23_NTZ/non_secure/portmacro.h
portable/GCC/ARM_CM3/portmacro.h
portable/GCC/ARM_CM33/non_secure/portmacro.h
portable/GCC/ARM_CM33_NTZ/non_secure/portmacro.h
portable/GCC/ARM_CM3_MPU/portmacro.h
portable/GCC/ARM_CM4F/portmacro.h
portable/GCC/ARM_CM4_MPU/portmacro.h
portable/GCC/ARM_CM55/non_secure/portmacro.h
portable/GCC/ARM_CM55_NTZ/non_secure/portmacro.h
portable/GCC/ARM_CM7/r0p1/portmacro.h
portable/GCC/ARM_CM85/non_secure/portmacro.h
portable/GCC/ARM_CM85_NTZ/non_secure/portmacro.h
portable/MemMang/heap_4.c
portable/ThirdParty/GCC/Posix/port.c
portable/ThirdParty/GCC/Posix/portmacro.h
portable/ThirdParty/GCC/RP2040/include/portmacro.h
portable/ThirdParty/GCC/Xtensa_ESP32/include/portmacro.h
queue.c
stream_buffer.c
tasks.c
timers.c