summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/x86_64/cpu.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* score: Canonicalize _CPU_Fatal_halt()Sebastian Huber2021-07-281-0/+13
| | | | | | | | Move _CPU_Fatal_halt() declaration to <rtems/score/cpuimpl.h> and make sure it is a proper declaration of a function which does not return. Fix the type of the error code. If necessary, add the implementation to cpu.c. Implementing _CPU_Fatal_halt() as a function makes it possible to wrap this function for example to fully test _Terminate().
* Remove superfluous <rtems/score/wkspace.h> includesSebastian Huber2021-04-201-1/+0
|
* score: Remove superfluous FP types/definesSebastian Huber2020-02-121-2/+0
| | | | Update #3835.
* Remove superfluous <rtems/system.h> includesSebastian Huber2019-03-141-1/+0
|
* x86_64: Remove use of proc_ptrSebastian Huber2018-11-121-21/+0
| | | | Update #3585.
* x86_64: Remove duplicate _CPU_Thread_Idle_body()Sebastian Huber2018-11-121-5/+0
|
* bsps/x86_64: Add support for RTEMS interruptsAmaan Cheval2018-08-131-10/+7
| | | | Updates #2898.
* bsp/x86_64: Minimal bootable BSPAmaan Cheval2018-07-111-0/+83
Current state: - Basic context initialization and switching code. - Stubbed console (empty functions). - Mostly functional linker script (may need tweaks if we ever want to move away from the large code model (see: CPU_CFLAGS). - Fully functional boot, by using FreeBSD's bootloader to load RTEMS's ELF for UEFI-awareness. In short, the current state with this commit lets us boot, go through the system initialization functions, and then call user application's Init task too. Updates #2898.