On Monday 05 October 2015 15:26:09 Manjeet Pawar wrote:
> -#define MINSIGSTKSZ    2048
> -#define SIGSTKSZ       8192
> +#ifdef CONFIG_ARM64
> +#define MINSIGSTKSZ 5120
> +#define SIGSTKSZ    16384
> +#else
> +#define MINSIGSTKSZ 2048
> +#define SIGSTKSZ    8192
> +#endif

uapi header files cannot use CONFIG_* symbols, as they are not visible
in user space.

If these have to be architecture-specific, override them in
arch/arm64/include/uapi/asm/signal.h

        Arnd
--
To unsubscribe from this list: send the line "unsubscribe linux-api" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to