FreeRTOS-Kernel/portable
José Simões 722596eaae
Add code to allow building for x64 in MSVC (#924)
* Add code to allow building for x64 in MSVC

- Add code for x64 arch.
- Add initial value for local otherwise it won't get proper value in x64.

* Moving init local to portGET_HIGHEST_PRIORITY

- From code review.

* More changes following review

* Another style fix from review

* Update formatting

Signed-off-by: Gaurav Aggarwal <aggarg@amazon.com>

---------

Signed-off-by: Gaurav Aggarwal <aggarg@amazon.com>
Co-authored-by: Gaurav-Aggarwal-AWS <33462878+aggarg@users.noreply.github.com>
Co-authored-by: Nikhil Kamath <110539926+amazonKamath@users.noreply.github.com>
Co-authored-by: Soren Ptak <ptaksoren@gmail.com>
Co-authored-by: Gaurav Aggarwal <aggarg@amazon.com>
2024-01-29 12:05:10 +05:30
..
ARMClang Normalize line endings and whitespace in source files 2022-11-29 15:38:47 -08:00
ARMv8M use configSTACK_DEPTH_TYPE consequently (updated for 11.0.x) (#942) 2024-01-27 10:56:55 +05:30
BCC/16BitDOS Revert Portable/BCC formatting (#828) 2023-12-07 22:21:11 +05:30
CCS Revert formatting on CCS port files (#881) 2023-11-23 15:39:09 +05:30
CodeWarrior Revert Portable/CodeWarrior formatting (#831) 2023-12-07 21:46:33 +05:30
Common use configSTACK_DEPTH_TYPE consequently (updated for 11.0.x) (#942) 2024-01-27 10:56:55 +05:30
GCC GCC: MSP430F449: Fix pxPortInitialiseStack on EABI (#947) 2024-01-29 11:07:43 +05:30
IAR use configSTACK_DEPTH_TYPE consequently (updated for 11.0.x) (#942) 2024-01-27 10:56:55 +05:30
Keil Normalize line endings and whitespace in source files 2022-11-29 15:38:47 -08:00
MemMang Fix typo in comment (#910) 2023-11-29 21:02:30 +05:30
MikroC/ARM_CM4F Revert the formatting changes on MikroC ports. (#882) 2023-11-23 15:50:15 +05:30
MPLAB Revert Portable/MPLAB Formatting (#883) 2023-11-23 15:59:40 +05:30
MSVC-MingW Add code to allow building for x64 in MSVC (#924) 2024-01-29 12:05:10 +05:30
oWatcom/16BitDOS Revert Portable/oWatcom formatting (#829) 2023-12-07 22:10:50 +05:30
Paradigm/Tern_EE Revert Portable/Paradigm formatting (#830) 2023-12-07 22:02:49 +05:30
Renesas Add portMEMORY_BARRIER() to RX MCU ports (#864) 2023-11-29 15:52:16 +05:30
Rowley Revert formatting on Rowley ports (#884) 2023-11-23 16:23:55 +05:30
RVDS use configSTACK_DEPTH_TYPE consequently (updated for 11.0.x) (#942) 2024-01-27 10:56:55 +05:30
SDCC/Cygnal Revert formatting on SDCC ports (#885) 2023-11-23 16:44:36 +05:30
Softune Revert Portable/Softune Formatting (#886) 2023-11-23 17:09:28 +05:30
Tasking/ARM_CM4F Revert formatting on Tasking ports (#887) 2023-11-23 17:21:23 +05:30
template Add SMP template port and example (#900) 2023-12-04 10:49:41 +08:00
ThirdParty Fix MacOS Posix port (#957) 2024-01-28 18:41:03 +05:30
WizC/PIC18 Revert Portable/WizC Formatting (#888) 2023-11-23 17:34:07 +05:30
CMakeLists.txt Add mpu_wrappers_v2_asm.c to MPU ports (#951) 2024-01-17 12:22:32 -08:00
readme.txt Normalize line endings and whitespace in source files 2022-11-29 15:38:47 -08:00

Each real time kernel port consists of three files that contain the core kernel
components and are common to every port, and one or more files that are
specific to a particular microcontroller and/or compiler.


+ The FreeRTOS/Source/Portable/MemMang directory contains the five sample
memory allocators as described on the https://www.FreeRTOS.org WEB site.

+ The other directories each contain files specific to a particular
microcontroller or compiler, where the directory name denotes the compiler
specific files the directory contains.



For example, if you are interested in the [compiler] port for the [architecture]
microcontroller, then the port specific files are contained in
FreeRTOS/Source/Portable/[compiler]/[architecture] directory.  If this is the
only port you are interested in then all the other directories can be
ignored.