Dmitry V. Levin
fef09070d6
* getrandom.c: New file. * Makefile.am (strace_SOURCES): Add it. * linux/dummy.h (sys_getrandom): Remove. * linux/syscall.h (sys_getrandom): New prototype. * xlat/getrandom_flags.in: New file. * tests/getrandom.c: New file. * tests/getrandom.awk: New file. * tests/getrandom.test: New test. * tests/Makefile.am (check_PROGRAMS): Add getrandom. (TESTS): Add getrandom.test. (EXTRA_DIST): Add getrandom.awk. * tests/.gitignore: Add getrandom.
13 lines
148 B
Plaintext
13 lines
148 B
Plaintext
#unconditional
|
|
|
|
#ifndef GRND_NONBLOCK
|
|
# define GRND_NONBLOCK 1
|
|
#endif
|
|
|
|
#ifndef GRND_RANDOM
|
|
# define GRND_RANDOM 2
|
|
#endif
|
|
|
|
GRND_NONBLOCK
|
|
GRND_RANDOM
|