Searched defs:auxv (Results 1 - 1 of 1) sorted by relevance

/systemd/src/basic/
H A Drandom-util.c30 #include <sys/auxv.h>
92 void *auxv; local
99 /* The kernel provides us with 16 bytes of entropy in auxv, so let's try to make use of that to seed the
102 auxv = (void*) getauxval(AT_RANDOM);
103 if (auxv) {
105 memcpy(&x, auxv, sizeof(x));

Completed in 122 milliseconds