diff options
author | Khem Raj <raj.khem@gmail.com> | 2009-10-30 13:00:14 -0700 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2009-10-30 13:00:14 -0700 |
commit | 94588289475beb1d044eafbf787bfa1180c4670f (patch) | |
tree | abd066c92ae29fbd22c35b902319cf5dde0bfa1a /recipes/eglibc/files/IO-acquire-lock-fix.patch | |
parent | 19c643967399ff50d4bc48f603b219794e920d39 (diff) |
eglibc: Backport IO-acquire-lock-fix.patch
* Move the svn recipe to latest git revision.
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'recipes/eglibc/files/IO-acquire-lock-fix.patch')
-rw-r--r-- | recipes/eglibc/files/IO-acquire-lock-fix.patch | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/recipes/eglibc/files/IO-acquire-lock-fix.patch b/recipes/eglibc/files/IO-acquire-lock-fix.patch new file mode 100644 index 0000000000..4d3e0613b1 --- /dev/null +++ b/recipes/eglibc/files/IO-acquire-lock-fix.patch @@ -0,0 +1,15 @@ +import http://sourceware.org/ml/libc-ports/2007-12/msg00000.html + +Index: libc/bits/stdio-lock.h +=================================================================== +--- libc.orig/bits/stdio-lock.h 2009-10-28 14:34:19.000000000 -0700 ++++ libc/bits/stdio-lock.h 2009-10-28 14:34:54.000000000 -0700 +@@ -50,6 +50,8 @@ __libc_lock_define_recursive (typedef, _ + _IO_cleanup_region_start ((void (*) (void *)) _IO_funlockfile, (_fp)); \ + _IO_flockfile (_fp) + ++# define _IO_acquire_lock_clear_flags2(_fp) _IO_acquire_lock (_fp) ++ + # define _IO_release_lock(_fp) \ + _IO_funlockfile (_fp); \ + _IO_cleanup_region_end (0) |