mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-26 05:02:18 +00:00
8cb6d791e7
is dead and py-pysendfile is a fork. PR: ports/169177 Submitted by: koobs <koobs.freebsd@gmail.com> Approved by: maintainer of py-sendfile's email domain is parked
7 lines
350 B
Plaintext
7 lines
350 B
Plaintext
sendfile(2) is a system call which provides a "zero-copy" way of copying data
|
|
from one file descriptor to another (a socket). The phrase "zero-copy" refers
|
|
to the fact that all of the copying of data between the two descriptors is
|
|
done entirely by the kernel, with no copying of data into userspace buffers.
|
|
|
|
WWW: http://code.google.com/p/pysendfile
|