diff options
Diffstat (limited to 'nptl/sysdeps/unix/sysv')
-rw-r--r-- | nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h | 6 | ||||
-rw-r--r-- | nptl/sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h b/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h index 79d0305cfb..193f21013c 100644 --- a/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h +++ b/nptl/sysdeps/unix/sysv/linux/sparc/sparc32/sysdep-cancel.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002, 2003 Free Software Foundation, Inc. +/* Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek <jakub@redhat.com>, 2002. @@ -67,7 +67,9 @@ __##syscall_name##_nocancel: \ SYSCALL_ERROR_HANDLER_ENTRY(__syscall_error_handler2) \ .global __errno_location; \ .type __errno_location,@function; \ - call __errno_location; \ + CDISABLE; \ + mov %l0, %o0; \ + call __errno_location; \ nop; \ st %l1, [%o0]; \ jmpl %i7 + 8, %g0; \ diff --git a/nptl/sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h b/nptl/sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h index efcb7dd200..cc2c2e95eb 100644 --- a/nptl/sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h +++ b/nptl/sysdeps/unix/sysv/linux/sparc/sparc64/sysdep-cancel.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2002, 2003 Free Software Foundation, Inc. +/* Copyright (C) 2002, 2003, 2004 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Jakub Jelinek <jakub@redhat.com>, 2002. @@ -61,7 +61,9 @@ __##syscall_name##_nocancel: \ SYSCALL_ERROR_HANDLER_ENTRY(__syscall_error_handler2) \ .global __errno_location; \ .type __errno_location,@function; \ - call __errno_location; \ + CDISABLE; \ + mov %l0, %o0; \ + call __errno_location; \ nop; \ st %l1, [%o0]; \ jmpl %i7 + 8, %g0; \ |