diff options
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/unix/sysv/linux/tile/makecontext.c | 8 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/tile/setcontext.S | 2 |
2 files changed, 6 insertions, 4 deletions
diff --git a/sysdeps/unix/sysv/linux/tile/makecontext.c b/sysdeps/unix/sysv/linux/tile/makecontext.c index b14b8d5cc9..c77d005672 100644 --- a/sysdeps/unix/sysv/linux/tile/makecontext.c +++ b/sysdeps/unix/sysv/linux/tile/makecontext.c @@ -52,14 +52,14 @@ __makecontext (ucontext_t *ucp, void (*func) (void), int argc, ...) } va_end (ap); - /* Pass (*func) to __startcontext in pc. */ - ucp->uc_mcontext.pc = (long) func; + /* Start in the trampoline. */ + ucp->uc_mcontext.pc = (long) __startcontext; /* Set stack pointer. */ ucp->uc_mcontext.sp = (long) sp; - /* Set the return address to trampoline. */ - ucp->uc_mcontext.lr = (long) __startcontext; + /* Pass FUNC to __startcontext in r31. */ + ucp->uc_mcontext.gregs[31] = (long) func; /* Pass ucp->uc_link to __startcontext in r30. */ ucp->uc_mcontext.gregs[30] = (long) ucp->uc_link; diff --git a/sysdeps/unix/sysv/linux/tile/setcontext.S b/sysdeps/unix/sysv/linux/tile/setcontext.S index ee9edbefe1..02d6a1578c 100644 --- a/sysdeps/unix/sysv/linux/tile/setcontext.S +++ b/sysdeps/unix/sysv/linux/tile/setcontext.S @@ -190,7 +190,9 @@ END (__setcontext) weak_alias (__setcontext, setcontext) ENTRY (__startcontext) + cfi_undefined (lr) FEEDBACK_ENTER(__startcontext) + jalr r31 BEQZ r30, 1f { move r0, r30 |