Last active
August 29, 2015 14:07
-
-
Save radare/53e8f89506466376439a to your computer and use it in GitHub Desktop.
Getrandom got a random syscall number
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ grep -re getrandom /usr/include/ | |
/usr/include/bits/syscall.h:#define SYS_getrandom __NR_getrandom | |
/usr/include/bits/syscall.h:#define SYS_getrandom __NR_getrandom | |
/usr/include/bits/syscall.h:#define SYS_getrandom __NR_getrandom | |
/usr/include/asm/unistd_64.h:#define __NR_getrandom 318 | |
/usr/include/asm/unistd_32.h:#define __NR_getrandom 355 | |
/usr/include/asm/unistd_x32.h:#define __NR_getrandom (__X32_SYSCALL_BIT + 318) | |
/usr/include/linux/random.h: * Flags for getrandom(2) | |
/usr/include/asm-generic/unistd.h:#define __NR_getrandom 278 | |
/usr/include/asm-generic/unistd.h:__SYSCALL(__NR_getrandom, sys_getrandom) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment