From: Bernd Edlinger Date: Mon, 19 Aug 2019 06:25:07 +0000 (+0200) Subject: Add a fallback definition for __NR_getrandom for x86 linux X-Git-Tag: openssl-3.0.0-alpha1~1567 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=038b381ecf2a988eee4c7bb21074ed0603303bd1;hp=81ff9eebbcf15ce04b52cc4257b265617ba412eb Add a fallback definition for __NR_getrandom for x86 linux Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/9639) --- diff --git a/crypto/rand/rand_unix.c b/crypto/rand/rand_unix.c index de86e48f3a..bf5c4c3499 100644 --- a/crypto/rand/rand_unix.c +++ b/crypto/rand/rand_unix.c @@ -258,6 +258,10 @@ static ssize_t sysctl_random(char *buf, size_t buflen) # if defined(__linux) && !defined(__NR_getrandom) # if defined(__arm__) && defined(__NR_SYSCALL_BASE) # define __NR_getrandom (__NR_SYSCALL_BASE+384) +# elif defined(__i386__) +# define __NR_getrandom 355 +# elif defined(__x86_64__) && !defined(__ILP32__) +# define __NR_getrandom 318 # endif # endif