diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-09-26 08:41:51 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-09-26 08:41:51 +0000 |
commit | 2047343ac533f17671483fa48a8aa5820714efa9 (patch) | |
tree | 6f2715177530d786553a41377c6823867b93daae /sysdeps | |
parent | 8afd37cb2b6c4352ecc639042c85d2d208aa7e6d (diff) | |
download | glibc-2047343ac533f17671483fa48a8aa5820714efa9.zip glibc-2047343ac533f17671483fa48a8aa5820714efa9.tar.gz glibc-2047343ac533f17671483fa48a8aa5820714efa9.tar.bz2 |
Pass fourth argument to rt_sigprocmask system call.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/unix/sysv/linux/ia64/getcontext.S | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/ia64/getcontext.S b/sysdeps/unix/sysv/linux/ia64/getcontext.S index f58e84f..7b61361 100644 --- a/sysdeps/unix/sysv/linux/ia64/getcontext.S +++ b/sysdeps/unix/sysv/linux/ia64/getcontext.S @@ -35,7 +35,7 @@ ENTRY(__getcontext) .prologue - alloc r16 = ar.pfs, 1, 0, 3, 0 + alloc r16 = ar.pfs, 1, 0, 4, 0 // sigprocmask (SIG_BLOCK, NULL, &sc->sc_mask): @@ -45,6 +45,7 @@ ENTRY(__getcontext) mov out0 = SIG_BLOCK mov out1 = 0 add out2 = r2, in0 + mov out3 = 8 // sizeof kernel sigset_t break __BREAK_SYSCALL flushrs // save dirty partition on rbs |