Update uncrustify configuration to 0.69 (#445)
The configuration was updated using uncrustify -c .github/uncrustify.cfg -o .github/uncrustify.cfg --update-config-with-doc to align with the actually used uncrustify version used, i.e., all configuration is now explicitly set (and no longer implicit). The files that are common to all ports ("portable/MemMang*" and "portable/Common/mpu_wrappers.c" are now also autoformatted. Co-authored-by: alfred gedeon <28123637+alfred2g@users.noreply.github.com>
This commit is contained in:
574
.github/uncrustify.cfg
vendored
574
.github/uncrustify.cfg
vendored
File diff suppressed because it is too large
Load Diff
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
@ -39,11 +39,11 @@ jobs:
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Install Uncrustify
|
||||
run: sudo apt-get install uncrustify
|
||||
run: sudo apt-get install uncrustify=0.69.0+dfsg1-1build1
|
||||
- name: Run Uncrustify
|
||||
run: |
|
||||
uncrustify --version
|
||||
find . \( -name portable \) -prune -false -o -iname "*.[hc]" -exec uncrustify --check -c .github/uncrustify.cfg {} +
|
||||
find . portable/MemMang/* portable/Common/* \( -name portable \) -prune -false -o -iname "*.[hc]" -exec uncrustify --check -c .github/uncrustify.cfg {} +
|
||||
- name: Check For Trailing Whitespace
|
||||
run: |
|
||||
set +e
|
||||
|
@ -79,7 +79,7 @@ void * pvPortMalloc( size_t xWantedSize )
|
||||
if( xWantedSize & portBYTE_ALIGNMENT_MASK )
|
||||
{
|
||||
/* Byte alignment required. Check for overflow. */
|
||||
if ( (xWantedSize + ( portBYTE_ALIGNMENT - ( xWantedSize & portBYTE_ALIGNMENT_MASK ) )) > xWantedSize )
|
||||
if( ( xWantedSize + ( portBYTE_ALIGNMENT - ( xWantedSize & portBYTE_ALIGNMENT_MASK ) ) ) > xWantedSize )
|
||||
{
|
||||
xWantedSize += ( portBYTE_ALIGNMENT - ( xWantedSize & portBYTE_ALIGNMENT_MASK ) );
|
||||
}
|
||||
@ -89,7 +89,7 @@ void * pvPortMalloc( size_t xWantedSize )
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
#endif /* if ( portBYTE_ALIGNMENT != 1 ) */
|
||||
|
||||
vTaskSuspendAll();
|
||||
{
|
||||
|
@ -157,7 +157,6 @@ void * pvPortMalloc( size_t xWantedSize )
|
||||
xWantedSize = 0;
|
||||
}
|
||||
|
||||
|
||||
if( ( xWantedSize > 0 ) && ( xWantedSize <= xFreeBytesRemaining ) )
|
||||
{
|
||||
/* Blocks are stored in byte order - traverse the list from the start
|
||||
|
Reference in New Issue
Block a user