diff options
author | Ulrich Drepper <drepper@redhat.com> | 2006-05-02 06:17:16 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2006-05-02 06:17:16 +0000 |
commit | 2748878913c185e9b53913ae81de6d6d39fed3df (patch) | |
tree | 5d84fc1d6e61a556a28e8b1ee6131a00b972298c /nptl | |
parent | afbf86d209f555381ceb07c58cc4e1741dee6d11 (diff) | |
download | glibc-2748878913c185e9b53913ae81de6d6d39fed3df.tar.gz glibc-2748878913c185e9b53913ae81de6d6d39fed3df.tar.xz glibc-2748878913c185e9b53913ae81de6d6d39fed3df.zip |
[BZ #2502]
* iconvdata/utf-7.c: Don't require more than two characters after the '+' sign starting Unicode shifted sequences.
Diffstat (limited to 'nptl')
-rw-r--r-- | nptl/ChangeLog | 5 | ||||
-rw-r--r-- | nptl/sysdeps/pthread/allocalim.h | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/nptl/ChangeLog b/nptl/ChangeLog index 132b2d07ef..d9ae655d86 100644 --- a/nptl/ChangeLog +++ b/nptl/ChangeLog @@ -1,3 +1,8 @@ +2006-05-01 Ulrich Drepper <drepper@redhat.com> + + * sysdeps/pthread/allocalim.h (__libc_use_alloca): Mark with + __always_inline. + 2006-04-27 Ulrich Drepper <drepper@redhat.com> * sysdeps/unix/sysv/linux/timer_routines.c (timer_helper_thread): diff --git a/nptl/sysdeps/pthread/allocalim.h b/nptl/sysdeps/pthread/allocalim.h index 35224ec74f..f13c3a3305 100644 --- a/nptl/sysdeps/pthread/allocalim.h +++ b/nptl/sysdeps/pthread/allocalim.h @@ -1,5 +1,5 @@ /* Determine whether block of given size can be allocated on the stack or not. - Copyright (C) 2002 Free Software Foundation, Inc. + Copyright (C) 2002, 2006 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -21,7 +21,8 @@ #include <limits.h> -extern inline int +extern int +__always_inline __libc_use_alloca (size_t size) { return (__builtin_expect (size <= PTHREAD_STACK_MIN / 4, 1) |