Updated: October 28, 2024 |
Supply entropy to the kernel's pseudorandom number generator
#include <sys/neutrino.h> int SysSrandom( const uint64_t *seedp );
libc
Use the -l c option to qcc to link against this library. This library is usually included automatically.
The SysSrandom() kernel call sets one source of entropy that's used for the kernel's pseudorandom number generator (PRNG). The PRNG is used with address space layout randomization (ASLR). For more information about ASLR, refer to Address space layout randomization (ASLR) in the System Security Guide. This call makes it possible to use an external source, such as a random number generator implemented in hardware, to augment the other sources of entropy.
Blocking states
This call doesn't block.
EOK on success. If an error occurs, it returns -1 and sets errno.
Safety: | |
---|---|
Cancellation point | No |
Interrupt handler | No |
Signal handler | Yes |
Thread | Yes |