mirror of
				https://sourceware.org/git/glibc.git
				synced 2025-10-30 10:45:40 +03:00 
			
		
		
		
	GCC 7 changed the definition of max_align_t on i386: https://gcc.gnu.org/git/?p=gcc.git;a=commitdiff;h=9b5c49ef97e63cc63f1ffa13baf771368105ebe2 As a result, glibc malloc no longer returns memory blocks which are as aligned as max_align_t requires. This causes malloc/tst-malloc-thread-fail to fail with an error like this one: error: allocation function 0, size 144 not aligned to 16 This patch moves the MALLOC_ALIGNMENT definition to <malloc-alignment.h> and increases the malloc alignment to 16 for i386. [BZ #21120] * malloc/malloc-internal.h (MALLOC_ALIGNMENT): Moved to ... * sysdeps/generic/malloc-alignment.h: Here. New file. * sysdeps/i386/malloc-alignment.h: Likewise. * sysdeps/generic/malloc-machine.h: Include <malloc-alignment.h>.
		
			
				
	
	
		
			43 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			43 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /* Basic platform-independent macro definitions for mutexes,
 | |
|    thread-specific data and parameters for malloc.
 | |
|    Copyright (C) 2003-2017 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
 | |
|    modify it under the terms of the GNU Lesser General Public
 | |
|    License as published by the Free Software Foundation; either
 | |
|    version 2.1 of the License, or (at your option) any later version.
 | |
| 
 | |
|    The GNU C Library is distributed in the hope that it will be useful,
 | |
|    but WITHOUT ANY WARRANTY; without even the implied warranty of
 | |
|    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 | |
|    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; if not, see
 | |
|    <http://www.gnu.org/licenses/>.  */
 | |
| 
 | |
| #ifndef _GENERIC_MALLOC_MACHINE_H
 | |
| #define _GENERIC_MALLOC_MACHINE_H
 | |
| 
 | |
| #include <atomic.h>
 | |
| #include <malloc-alignment.h>
 | |
| 
 | |
| #ifndef atomic_full_barrier
 | |
| # define atomic_full_barrier() __asm ("" ::: "memory")
 | |
| #endif
 | |
| 
 | |
| #ifndef atomic_read_barrier
 | |
| # define atomic_read_barrier() atomic_full_barrier ()
 | |
| #endif
 | |
| 
 | |
| #ifndef atomic_write_barrier
 | |
| # define atomic_write_barrier() atomic_full_barrier ()
 | |
| #endif
 | |
| 
 | |
| #ifndef DEFAULT_TOP_PAD
 | |
| # define DEFAULT_TOP_PAD 131072
 | |
| #endif
 | |
| 
 | |
| #endif /* !defined(_GENERIC_MALLOC_MACHINE_H) */
 |