diff options
author | Kim Alvefur <zash@zash.se> | 2017-01-22 09:55:44 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-01-22 09:55:44 +0100 |
commit | 6adfe1e74325f9545fc4032b8d3fdecc92386983 (patch) | |
tree | 3a56b34572b29c54edee4bee2538dcdea009c377 | |
parent | 3a33321db7be83ef5aab718a8271c4bd81569e50 (diff) | |
download | prosody-6adfe1e74325f9545fc4032b8d3fdecc92386983.tar.gz prosody-6adfe1e74325f9545fc4032b8d3fdecc92386983.zip |
util.crand: Comment about getrandom
-rw-r--r-- | util-src/crand.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/util-src/crand.c b/util-src/crand.c index aa3379c2..7dd71a92 100644 --- a/util-src/crand.c +++ b/util-src/crand.c @@ -34,7 +34,10 @@ #error getrandom() requires Linux 3.17 or later #endif -/* Was this not supposed to be a function? */ +/* + * This acts like a read from /dev/urandom with the exception that it + * *does* block if the entropy pool is not yet initialized. + */ int getrandom(void *buf, size_t len, int flags) { return syscall(SYS_getrandom, buf, len, flags); } |