aboutsummaryrefslogtreecommitdiffstats
path: root/sys/linux/prctl.txt.warn
Commit message (Collapse)AuthorAgeFilesLines
* tools/syz-check: also check arm/arm64Dmitry Vyukov2020-01-181-0/+9
| | | | | | | | | They mostly duplicate the warnings we already have for amd64/386. But uncovered few very interesting local things (e.g. epoll_event is packed only on amd64, so arm/arm64 layout is wrong, but 386 is correct because int64 alignment is different). Update #590
* sys/linux: fix int64 alignment on 386Dmitry Vyukov2019-12-231-1/+0
| | | | | | | | | Turns out int64 alignment is 4 on 386... But on arm it's still 8. Another amusing finding thanks to syz-check. Update #590
* tools/syz-check: check amd64 and 386 at the same timeDmitry Vyukov2019-12-221-0/+1
Update #590