Create stream in UEFI

Is there a way to run a streaming application on UEFI? I only found a few mentions of streams in the UEFI specifications, but they did not actually answer my question.

+6
source share
1 answer

There are no threads in UEFI right now, but there is an MpService protocol that can be used to perform tasks on CPU cores, BSP (BootStrap Processor, the kernel that runs UEFI). You can learn more about the same issue here , since then almost nothing has changed. This presentation may also be useful, but not all functions mentioned there (for example, the sync primitive library) are implemented in any given UEFI firmware.

+6
source

Source: https://habr.com/ru/post/981009/


All Articles