diff options
author | Roland McGrath <roland@gnu.org> | 2005-10-04 00:40:07 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2005-10-04 00:40:07 +0000 |
commit | 015a5d22ea8225844f1751d3540a4b52bde91002 (patch) | |
tree | 080e9d36b4d4e8ccacc64147778e4313068c782e /nptl | |
parent | bc49f3fc77adbc22606a94a0b20350a04496a047 (diff) | |
download | glibc-015a5d22ea8225844f1751d3540a4b52bde91002.tar.gz glibc-015a5d22ea8225844f1751d3540a4b52bde91002.tar.xz glibc-015a5d22ea8225844f1751d3540a4b52bde91002.zip |
* allocatestack.c (setxid_signal_thread): Add
INTERNAL_SYSCALL_DECL (err).
Diffstat (limited to 'nptl')
-rw-r--r-- | nptl/ChangeLog | 5 | ||||
-rw-r--r-- | nptl/allocatestack.c | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/nptl/ChangeLog b/nptl/ChangeLog index cb4707257d..b4fe8e03a6 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,3 +1,8 @@ +2005-10-03 Jakub Jelinek <jakub@redhat.com> + + * allocatestack.c (setxid_signal_thread): Add + INTERNAL_SYSCALL_DECL (err). + 2005-10-02 Jakub Jelinek <jakub@redhat.com> * allocatestack.c (setxid_signal_thread): Need to use diff --git a/nptl/allocatestack.c b/nptl/allocatestack.c index f0dddf051d..255129a1df 100644 --- a/nptl/allocatestack.c +++ b/nptl/allocatestack.c @@ -839,6 +839,7 @@ setxid_signal_thread (struct xid_command *cmdp, struct pthread *t) } int val; + INTERNAL_SYSCALL_DECL (err); #if __ASSUME_TGKILL val = INTERNAL_SYSCALL (tgkill, err, 3, THREAD_GETMEM (THREAD_SELF, pid), t->tid, SIGSETXID); @@ -867,8 +868,6 @@ __nptl_setxid (struct xid_command *cmdp) __xidcmd = cmdp; cmdp->cntr = 0; - INTERNAL_SYSCALL_DECL (err); - struct pthread *self = THREAD_SELF; /* Iterate over the list with system-allocated threads first. */ @@ -901,6 +900,7 @@ __nptl_setxid (struct xid_command *cmdp) /* This must be last, otherwise the current thread might not have permissions to send SIGSETXID syscall to the other threads. */ + INTERNAL_SYSCALL_DECL (err); result = INTERNAL_SYSCALL_NCS (cmdp->syscall_no, err, 3, cmdp->id[0], cmdp->id[1], cmdp->id[2]); if (INTERNAL_SYSCALL_ERROR_P (result, err)) |