This is the mail archive of the libc-alpha@sources.redhat.com mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

malloc/arena.c bogosity


Fix for the following attached:

In file included from malloc.c:2363:
arena.c: In function `arena_get2':
arena.c:785: error: `bool' undeclared (first use in this function)
arena.c:785: error: (Each undeclared identifier is reported only once
arena.c:785: error: for each function it appears in.)
arena.c:785: error: parse error before "retried"
arena.c:789: error: `retried' undeclared (first use in this function)
arena.c:807: error: `true' undeclared (first use in this function)

2005-03-01  Alfred M. Szmidt  <ams@gnu.org>

	* malloc/arena.c: #include <stdbool.h> outside of [SHARED &&
	USE_TLS && !USE___THREAD].

--- malloc/arena.c	10 Dec 2004 12:42:08 +0100	1.13
+++ malloc/arena.c	25 Feb 2005 05:30:11 +0100	
@@ -1,5 +1,5 @@
 /* Malloc implementation for multiple threads without lock contention.
-   Copyright (C) 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
+   Copyright (C) 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Wolfram Gloger <wg@malloc.de>, 2001.
 
@@ -20,6 +20,8 @@
 
 /* $Id: arena.c,v 1.13 2004/12/10 11:42:08 drepper Exp $ */
 
+#include <stdbool.h>
+
 /* Compile-time constants.  */
 
 #define HEAP_MIN_SIZE (32*1024)
@@ -353,8 +355,6 @@ libc_hidden_proto (_dl_open_hook);
 # endif
 
 # if defined SHARED && defined USE_TLS && !USE___THREAD
-# include <stdbool.h>
-
 /* This is called by __pthread_initialize_minimal when it needs to use
    malloc to set up the TLS state.  We cannot do the full work of
    ptmalloc_init (below) until __pthread_initialize_minimal has finished,


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]