Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | fix sendmmsg emulation return value for zero-length vector | Rich Felker | 2014-06-20 | 1 | -0/+1 |
| | | | | | this case is not even documented, but the kernel returns 0 here and it makes sense to be consistent. | ||||
* | implement sendmmsg and recvmmsg | Rich Felker | 2014-06-19 | 1 | -0/+29 |
these are not pure syscall wrappers because they have to work around kernel API bugs on 64-bit archs. the workarounds could probably be made somewhat more efficient, but at the cost of more complexity. this may be revisited later. |