aboutsummaryrefslogtreecommitdiffstats
path: root/sys/freebsd/socket_inet_icmp.txt
Commit message (Collapse)AuthorAgeFilesLines
* pkg/compiler: check for unused resourcesDmitry Vyukov2020-08-041-8/+4
| | | | | | | | | | If a resource is never used as an input, it is not useful. It's effectively the same as using an integer. Detect such cases, they are quite confusing. Fix all existing errors in descriptions. This uncovered some interesting bugs as well, e.g. use of a completely unrelated fd subtype after copy-paste (while the resource that was supposed to be used there is completely unused).
* sys/freebsd: remove linux specific include files for ICMPMichael Tüxen2018-12-051-2/+0
|
* sys: remove socketpair for AF_INET and AF_INET6Michael Tüxen2018-12-041-14/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * OpebBSD: remove socketpair() for AF_INET and AF_INET6. socketpair() is only supported on AF_UNIX. * NetBSD: remove socketpair() for AF_INET and AF_INET6. socketpair() is only supported for AF_UNIX. * FreeBSD: remove socketpair() for AF_INET and AF_INET6. socketpair() only supports AF_UNIX. * Linux: remove socketpair for AF_INET and AF_INET6. socketpair only supports AF_UNIX. * Autogenerated files. These are manually generated for all platforms you are not running on. FreeBSD in this case. * executor: rebase. * sys/freebsd: rebase. * sys/linux: use AF_UNIX based socketpair for nbd. This was suggested by Dmitry. Fixes #845
* sys/freebsd: more syscall descriptionsDmitry Vyukov2017-10-171-0/+34
This is mostly copied form linux. We probably need better support for sharing descriptions between multiple OSes. But there are lots of differences, so this is not trivial.