From 97768fc5746ea97cb2d3ac6854b4fc7ce1c14f24 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Thu, 30 Oct 2014 15:27:53 +0100 Subject: util: don't block on getrandom() --- src/shared/missing.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/shared/missing.h') diff --git a/src/shared/missing.h b/src/shared/missing.h index 85d3fec33c..7725e47298 100644 --- a/src/shared/missing.h +++ b/src/shared/missing.h @@ -149,6 +149,14 @@ static inline int getrandom(void *buffer, size_t count, unsigned flags) { } #endif +#ifndef GRND_NONBLOCK +#define GRND_NONBLOCK 0x0001 +#endif + +#ifndef GRND_RANDOM +#define GRND_RANDOM 0x0002 +#endif + #ifndef BTRFS_IOCTL_MAGIC #define BTRFS_IOCTL_MAGIC 0x94 #endif -- cgit v1.2.3-54-g00ecf