arch: introduce initjmp() and Kconfig symbol HAVE_INITJMP
authorJerome Forissier <jerome.forissier@linaro.org>
Fri, 18 Apr 2025 14:09:29 +0000 (16:09 +0200)
committerTom Rini <trini@konsulko.com>
Wed, 23 Apr 2025 19:19:44 +0000 (13:19 -0600)
commit1c8e166fb5eb5c58b79a09e80660a7ebfc7c94fa
tree22c18eec2d0c0aa446185dd3c9b4de172127d728
parent278be62c052f3a5749c3c7a57bcd307b82dcdc2d
arch: introduce initjmp() and Kconfig symbol HAVE_INITJMP

Add the HAVE_INIJMP symbol to be set by architectures that support
initjmp(), a non-standard extension to setjmp()/longjmp() allowing to
initialize a jump buffer with a function pointer and a stack pointer.
This will be useful to later introduce threads. With this new function
it becomes possible to longjmp() to a particular function pointer
(rather than to a point previously reached during program execution as
is the case with setjmp()), and with a custom stack. Both things are
needed to spin off a new thread. Then the usual setjmp()/longjmp() pair
is enough to save and restore a context, i.e., switch thread.

Add the initjmp() prototype to <include/setjmp.h> since it is common to
all architectures.

Add an entry to the API documentation: doc/api/setjmp.rst.

Signed-off-by: Jerome Forissier <jerome.forissier@linaro.org>
Reviewed-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
arch/Kconfig
doc/api/index.rst
doc/api/setjmp.rst [new file with mode: 0644]
include/setjmp.h