]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Updated to fedora-glibc-20070117T1043 cvs/fedora-glibc-2_5_90-15
authorJakub Jelinek <jakub@redhat.com>
Wed, 17 Jan 2007 10:46:36 +0000 (10:46 +0000)
committerJakub Jelinek <jakub@redhat.com>
Wed, 17 Jan 2007 10:46:36 +0000 (10:46 +0000)
fedora/branch.mk
nptl/ChangeLog
nptl/sysdeps/unix/sysv/linux/x86_64/lowlevellock.S

index 2d72bfd8dd73a0cd7094be038f325b696945c592..e4217bc04b8e5c0ab39d65e9db5143bc854f3d13 100644 (file)
@@ -3,5 +3,5 @@ glibc-branch := fedora
 glibc-base := HEAD
 DIST_BRANCH := devel
 COLLECTION := dist-fc7
-fedora-sync-date := 2007-01-17 08:57 UTC
-fedora-sync-tag := fedora-glibc-20070117T0857
+fedora-sync-date := 2007-01-17 10:43 UTC
+fedora-sync-tag := fedora-glibc-20070117T1043
index 425fbf4ba59df3b8cccf864f83787b7da0485e42..842a04f9f034bf16aa5c0d4d82866e05971b585f 100644 (file)
@@ -1,5 +1,8 @@
 2007-01-17  Ulrich Drepper  <drepper@redhat.com>
 
+       * sysdeps/unix/sysv/linux/x86_64/lowlevellock.S
+       (__lll_timedwait_tid): Add unwind info.
+
        * sysdeps/unix/sysv/linux/libc_pthread_init.c: Don't just copy the
        function table, mangle the pointers.
        * sysdeps/pthread/pthread-functions.h: Define PTHFCT_CALL.
index 90f10e6f4fbd8b62395b9eb679ebb29045d42507..3783f1cceeab168d76c13ca93d4c1569160acdb1 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
+/* Copyright (C) 2002-2006, 2007 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@redhat.com>, 2002.
 
@@ -269,13 +269,19 @@ __lll_mutex_unlock_wake:
        .hidden __lll_timedwait_tid
        .align  16
 __lll_timedwait_tid:
+       cfi_startproc
        pushq   %r12
+       cfi_adjust_cfa_offset(8)
        pushq   %r13
+       cfi_adjust_cfa_offset(8)
+       cfi_offset(%r12, -16)
+       cfi_offset(%r13, -24)
 
        movq    %rdi, %r12
        movq    %rsi, %r13
 
        subq    $16, %rsp
+       cfi_adjust_cfa_offset(16)
 
        /* Get current time.  */
 2:     movq    %rsp, %rdi
@@ -319,14 +325,21 @@ __lll_timedwait_tid:
 4:     xorl    %eax, %eax
 
 8:     addq    $16, %rsp
+       cfi_adjust_cfa_offset(-16)
        popq    %r13
+       cfi_adjust_cfa_offset(-8)
+       cfi_restore(%r13)
        popq    %r12
+       cfi_adjust_cfa_offset(-8)
+       cfi_restore(%r12)
        retq
 
+       cfi_adjust_cfa_offset(32)
 1:     cmpq    $-ETIMEDOUT, %rax
        jne     2b
 
 6:     movl    $ETIMEDOUT, %eax
        jmp     8b
+       cfi_endproc
        .size   __lll_timedwait_tid,.-__lll_timedwait_tid
 #endif