Franck Bui-Huu wrote:
On 2/1/07, David Daney <ddaney@xxxxxxxxxx> wrote:
I don't think *any* registers *need* to be saved on sys_sigreturn().
The values in sigcontext on the user stack associated with the system
call are all used instead of the actual register values.
Sorry but I don't understand what you mean. Could you explain ?
sys_sigreturn does not return to the caller in the conventional sense.
The entire user context (i.e. the value of *all* registers) is replaced
with the values stored in the sigcontext structure on the caller's
stack. If all registers are being restored from the sigcontext, then
there is no need to save the current values of the registers, because
they will never be used.
David Daney