Skip to content

Commit

Permalink
Updated to fedora-glibc-20081028T1533
Browse files Browse the repository at this point in the history
  • Loading branch information
Jakub Jelinek committed Oct 28, 2008
1 parent 911b70e commit 242bfef
Showing 9 changed files with 6,651 additions and 140 deletions.
23 changes: 23 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
2008-10-28 Ulrich Drepper <drepper@redhat.com>

* po/lt.po: Update from translation team.

2008-10-26 Ulrich Drepper <drepper@redhat.com>

* po/id.po: Update from translation team.

2008-10-24 Ulrich Drepper <drepper@redhat.com>

* resolv/res_query.c (__libc_res_nquery): Add a few casts.
Fix tests for existence of second reply.

2008-10-23 Ulrich Drepper <drepper@redhat.com>

* po/id.po: New file.
Contributed by the Indonesian translation team.

2008-10-22 Dmitry V. Levin <ldv@altlinux.org>

* misc/syslog.c (openlog_internal): Fix __have_sock_cloexec
initialization.

2008-10-17 Jakub Jelinek <jakub@redhat.com>

* elf/Makefile: Add rules to build and run tst-tls17.
4 changes: 2 additions & 2 deletions fedora/branch.mk
Original file line number Diff line number Diff line change
@@ -3,5 +3,5 @@ glibc-branch := fedora
glibc-base := HEAD
DIST_BRANCH := devel
COLLECTION := dist-f8
fedora-sync-date := 2008-10-19 18:15 UTC
fedora-sync-tag := fedora-glibc-20081019T1815
fedora-sync-date := 2008-10-28 15:33 UTC
fedora-sync-tag := fedora-glibc-20081028T1533
2 changes: 1 addition & 1 deletion fedora/glibc.spec.in
Original file line number Diff line number Diff line change
@@ -19,7 +19,7 @@
Summary: The GNU libc libraries
Name: glibc
Version: @glibcversion@
Release: 14
Release: 15
# GPLv2+ is used in a bunch of programs, LGPLv2+ is used for libraries.
# Things that are linked directly into dynamically linked programs
# and shared libraries (e.g. crt files, lib*_nonshared.a) have an additional
7 changes: 4 additions & 3 deletions misc/syslog.c
Original file line number Diff line number Diff line change
@@ -358,10 +358,11 @@ openlog_internal(const char *ident, int logstat, int logfac)
# ifndef __ASSUME_SOCK_CLOEXEC
if (__have_sock_cloexec == 0)
__have_sock_cloexec
= (LogFile != -1
|| errno != EINVAL);
= ((LogFile != -1
|| errno != EINVAL)
? 1 : -1);
}
#endif
# endif
#endif
#ifndef __ASSUME_SOCK_CLOEXEC
# ifdef SOCK_CLOEXEC
5 changes: 5 additions & 0 deletions nptl/ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2008-10-06 Martin Schwidefsky <schwidefsky@de.ibm.com>

* sysdeps/s390/tls.h (THREAD_SET_STACK_GUARD): Add empty inline
assembly with a clobber list for access registers a0 and a1.

2008-09-11 Martin Schwidefsky <schwidefsky@de.ibm.com>

* sysdeps/unix/sysv/linux/fork.c (__libc_fork): Add memory barrier
7 changes: 6 additions & 1 deletion nptl/sysdeps/s390/tls.h
Original file line number Diff line number Diff line change
@@ -161,7 +161,12 @@ typedef struct

/* Set the stack guard field in TCB head. */
#define THREAD_SET_STACK_GUARD(value) \
THREAD_SETMEM (THREAD_SELF, header.stack_guard, value)
do \
{ \
__asm __volatile ("" : : : "a0", "a1"); \
THREAD_SETMEM (THREAD_SELF, header.stack_guard, value); \
} \
while (0)
#define THREAD_COPY_STACK_GUARD(descr) \
((descr)->header.stack_guard \
= THREAD_GETMEM (THREAD_SELF, header.stack_guard))
Loading

0 comments on commit 242bfef

Please sign in to comment.