Add a FIXME about the problems closing /dev/urandom
This commit is contained in:
@@ -154,6 +154,7 @@ inline void isaac_seed(rust_kernel* kernel, uint8_t* dest, size_t size)
|
|||||||
amount += (size_t)ret;
|
amount += (size_t)ret;
|
||||||
} while (amount < size);
|
} while (amount < size);
|
||||||
int ret = close(fd);
|
int ret = close(fd);
|
||||||
|
// FIXME #3697: Why does this fail sometimes?
|
||||||
if (ret != 0)
|
if (ret != 0)
|
||||||
kernel->log(log_warn, "error closing /dev/urandom: %s",
|
kernel->log(log_warn, "error closing /dev/urandom: %s",
|
||||||
strerror(errno));
|
strerror(errno));
|
||||||
|
|||||||
Reference in New Issue
Block a user