]> git.ipfire.org Git - thirdparty/glibc.git/blobdiff - nptl/sysdeps/pthread/allocalim.h
Update copyright notices with scripts/update-copyrights.
[thirdparty/glibc.git] / nptl / sysdeps / pthread / allocalim.h
index f13c3a330578b8dd9dbcefd847fa62885c28e6f6..1ccd387ce43f4c6936a2bbb3dce05ce4e2d5ee89 100644 (file)
@@ -1,5 +1,5 @@
 /* Determine whether block of given size can be allocated on the stack or not.
-   Copyright (C) 2002, 2006 Free Software Foundation, Inc.
+   Copyright (C) 2002-2013 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
@@ -13,9 +13,8 @@
    Lesser General Public License for more details.
 
    You should have received a copy of the GNU Lesser General Public
-   License along with the GNU C Library; see the file COPYING.LIB.  If not,
-   write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
-   Boston, MA 02111-1307, USA.  */
+   License along with the GNU C Library; see the file COPYING.LIB.  If
+   not, see <http://www.gnu.org/licenses/>.  */
 
 #include <alloca.h>
 #include <limits.h>
@@ -26,5 +25,5 @@ __always_inline
 __libc_use_alloca (size_t size)
 {
   return (__builtin_expect (size <= PTHREAD_STACK_MIN / 4, 1)
-         || __libc_alloca_cutoff (size));
+         || __builtin_expect (__libc_alloca_cutoff (size), 1));
 }