+2020-11-27 Bruno Haible <bruno@clisp.org>
+
+ ssfmalloc tests: Port to macOS 11.
+ * tests/test-ssfmalloc.c (PAGESIZE_MAX): Set to 16384, not 8192.
+
2020-11-26 Bruno Haible <bruno@clisp.org>
Fix dependencies of modules that use '_exit' on native Windows.
/* ======================= Instantiate the front end ======================= */
#define PAGESIZE pagesize
-/* On Cygwin and Linux/PowerPC, PAGESIZE is 65536. On all other platforms, it
- is either 4096 or 8192. */
+/* On Cygwin and Linux/PowerPC, PAGESIZE is 65536. On macOS 11, it is 16384.
+ On all other platforms, it is either 4096 or 8192. */
#if defined __CYGWIN__ || (defined __linux__ && defined __powerpc__)
# define PAGESIZE_MAX 65536
#else
-# define PAGESIZE_MAX 8192
+# define PAGESIZE_MAX 16384
#endif
#define ALLOC_PAGES alloc_pages