Committed for 2.33
commit
e0aec6c83374286ffac44ee1b0e628894b7102e3
Author: Samuel Thibault <samuel.thibault@ens-lyon.org>
Date: Mon Dec 21 03:15:38 2020 +0100
hurd: Make trampoline fill siginfo ss_sp from sc_uesp
Mach actually rather fills the uesp field, not esp.
Gbp-Pq: Topic hurd-i386
Gbp-Pq: Name git-siginfo_uesp.diff
uc->uc_flags = 0;
uc->uc_link = NULL;
uc->uc_sigmask = sc->sc_mask;
- uc->uc_stack.ss_sp = (__ptr_t) sc->sc_esp;
+ uc->uc_stack.ss_sp = (__ptr_t) sc->sc_uesp;
uc->uc_stack.ss_size = 0;
uc->uc_stack.ss_flags = 0;