From 2918dc4bea9eb142b3c09d6a7c437a110333f7f7 Mon Sep 17 00:00:00 2001 From: Jakub Jelinek Date: Oct 29 2006 23:32:49 +0000 Subject: 2.5.90-3 --- diff --git a/glibc-fedora.patch b/glibc-fedora.patch index 62035b4..15efea5 100644 --- a/glibc-fedora.patch +++ b/glibc-fedora.patch @@ -2204,3 +2204,19 @@ { { echo "$as_me:$LINENO: error: linker with -z relro support required" >&5 echo "$as_me: error: linker with -z relro support required" >&2;} { (exit 1); exit 1; }; } +--- libc/nptl/sysdeps/ia64/pthread_spin_unlock.c 2003-03-18 04:42:45.000000000 +0100 ++++ libc/nptl/sysdeps/ia64/pthread_spin_unlock.c 2006-10-30 00:31:16.000000000 +0100 +@@ -1,4 +1,4 @@ +-/* Copyright (C) 2003 Free Software Foundation, Inc. ++/* Copyright (C) 2003, 2006 Free Software Foundation, Inc. + This file is part of the GNU C Library. + Contributed by Jakub Jelinek , 2003. + +@@ -23,6 +23,6 @@ + int + pthread_spin_unlock (pthread_spinlock_t *lock) + { +- __sync_lock_release_si ((int *) lock); ++ __sync_lock_release ((int *) lock); + return 0; + }