mirror of
https://sourceware.org/git/glibc.git
synced 2026-01-06 11:51:29 +03:00
hurd: Fix libsupport xsigstack build
Hurd does not support MAP_NORESERVE and MAP_STACK. Checked on i686-gnu build. * support/xsigstack.c (MAP_NORESERVE, MAP_STACK): Define if they are not defined.
This commit is contained in:
@@ -26,6 +26,13 @@
|
||||
#include <sys/mman.h>
|
||||
#include <sys/param.h> /* roundup, MAX */
|
||||
|
||||
#ifndef MAP_NORESERVE
|
||||
# define MAP_NORESERVE 0
|
||||
#endif
|
||||
#ifndef MAP_STACK
|
||||
# define MAP_STACK 0
|
||||
#endif
|
||||
|
||||
/* The "cookie" returned by xalloc_sigstack points to one of these
|
||||
structures. */
|
||||
struct sigstack_desc
|
||||
|
||||
Reference in New Issue
Block a user