From e0efc2cd4c9ba4cf1e81156dd04e76f859b60f9a Mon Sep 17 00:00:00 2001 From: Yong Cong Sin Date: Mon, 3 Jun 2024 18:12:12 +0800 Subject: [PATCH] doc: releases: update migration guide for the `struct arch_esf` Add a note about the introduction of `struct arch_esf` and the deprecation of `z_arch_esf_t`. Signed-off-by: Yong Cong Sin --- doc/releases/migration-guide-3.7.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/doc/releases/migration-guide-3.7.rst b/doc/releases/migration-guide-3.7.rst index 0fa08a6af9d..b7f2b3630ee 100644 --- a/doc/releases/migration-guide-3.7.rst +++ b/doc/releases/migration-guide-3.7.rst @@ -59,6 +59,11 @@ Build System Kernel ****** +* All architectures are now required to define the new ``struct arch_esf``, which describes the members + of a stack frame. This new struct replaces the named struct ``z_arch_esf_t``. (:github:`73593`) + +* The named struct ``z_arch_esf_t`` is now deprecated. Use ``struct arch_esf`` instead. (:github:`73593`) + Boards ******