Unbreak the unexec build
* src/alloc.c (BLOCK_ALIGN) [HAVE_UNEXEC]: Reset back to 1024. (Bug#61960)
This commit is contained in:
parent
396f46d904
commit
4b3ccf3092
1 changed files with 5 additions and 1 deletions
|
@ -1083,7 +1083,11 @@ lisp_free (void *block)
|
|||
BLOCK_BYTES and guarantees they are aligned on a BLOCK_ALIGN boundary. */
|
||||
|
||||
/* Byte alignment of storage blocks. */
|
||||
#define BLOCK_ALIGN (1 << 15)
|
||||
#ifdef HAVE_UNEXEC
|
||||
# define BLOCK_ALIGN (1 << 10)
|
||||
#else /* !HAVE_UNEXEC */
|
||||
# define BLOCK_ALIGN (1 << 15)
|
||||
#endif
|
||||
verify (POWER_OF_2 (BLOCK_ALIGN));
|
||||
|
||||
/* Use aligned_alloc if it or a simple substitute is available.
|
||||
|
|
Loading…
Add table
Reference in a new issue