<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/lib/libc/sys/write.2, branch release/10.4.0</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src/atom?h=release%2F10.4.0</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src/atom?h=release%2F10.4.0'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/'/>
<updated>2013-09-12T00:53:38Z</updated>
<entry>
<title>Consistently reference file descriptors as "fd". 55 other manpages</title>
<updated>2013-09-12T00:53:38Z</updated>
<author>
<name>Bryan Drewery</name>
<email>bdrewery@FreeBSD.org</email>
</author>
<published>2013-09-12T00:53:38Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=c36029e6dc6d1cff4bebc222a8738d25c89da9f1'/>
<id>urn:sha1:c36029e6dc6d1cff4bebc222a8738d25c89da9f1</id>
<content type='text'>
used "fd", while these used "d" and "filedes".

MFC after:	1 week
Approved by:	gjb
Approved by:	re (delphij)
</content>
</entry>
<entry>
<title>The sys/uio.h header is needed only for readv(2), preadv(2), writev(2) and</title>
<updated>2012-01-22T11:15:48Z</updated>
<author>
<name>Pawel Jakub Dawidek</name>
<email>pjd@FreeBSD.org</email>
</author>
<published>2012-01-22T11:15:48Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=e0c980d95d4965972eafd5d0bc711a79c0fe391f'/>
<id>urn:sha1:e0c980d95d4965972eafd5d0bc711a79c0fe391f</id>
<content type='text'>
pwritev(2). Document it more precisely.

Reviewed by:	jilles
MFC after:	3 days
</content>
</entry>
<entry>
<title>Per Regents of the University of Calfornia letter, remove advertising</title>
<updated>2007-01-09T00:28:16Z</updated>
<author>
<name>Warner Losh</name>
<email>imp@FreeBSD.org</email>
</author>
<published>2007-01-09T00:28:16Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=c879ae3536e6d92b8d96c8965c5b05fcb9541520'/>
<id>urn:sha1:c879ae3536e6d92b8d96c8965c5b05fcb9541520</id>
<content type='text'>
clause.

# If I've done so improperly on a file, please let me know.
</content>
</entry>
<entry>
<title>Minor markup fix: A comma should be seperated by space from macro</title>
<updated>2006-10-21T20:36:50Z</updated>
<author>
<name>Simon L. B. Nielsen</name>
<email>simon@FreeBSD.org</email>
</author>
<published>2006-10-21T20:36:50Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=27111d392c7430f1056120466f910e7a580925c7'/>
<id>urn:sha1:27111d392c7430f1056120466f910e7a580925c7</id>
<content type='text'>
argument.  This resulted in "pwritev,()" instead of the intended
"pwritev()," in the output.

MFC after:	3 days
</content>
</entry>
<entry>
<title>List pwritev in the NAME section.</title>
<updated>2006-04-14T19:34:07Z</updated>
<author>
<name>Ruslan Ermilov</name>
<email>ru@FreeBSD.org</email>
</author>
<published>2006-04-14T19:34:07Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=1427d59beef1c498aca96589ea214e767fe76e70'/>
<id>urn:sha1:1427d59beef1c498aca96589ea214e767fe76e70</id>
<content type='text'>
</content>
</entry>
<entry>
<title>-mdoc sweep.</title>
<updated>2005-11-17T13:00:00Z</updated>
<author>
<name>Ruslan Ermilov</name>
<email>ru@FreeBSD.org</email>
</author>
<published>2005-11-17T13:00:00Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=110e1704d33d8632ce8febdd36a0143ca8b2ef0e'/>
<id>urn:sha1:110e1704d33d8632ce8febdd36a0143ca8b2ef0e</id>
<content type='text'>
</content>
</entry>
<entry>
<title>- Add two new system calls: preadv() and pwritev() which are like readv()</title>
<updated>2005-07-07T18:17:55Z</updated>
<author>
<name>John Baldwin</name>
<email>jhb@FreeBSD.org</email>
</author>
<published>2005-07-07T18:17:55Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=bcd9e0dd20e40f15d1fb3e0bc34c2c2c0f08fc39'/>
<id>urn:sha1:bcd9e0dd20e40f15d1fb3e0bc34c2c2c0f08fc39</id>
<content type='text'>
  and writev() except that they take an additional offset argument and do
  not change the current file position.  In SAT speak:
  preadv:readv::pread:read and pwritev:writev::pwrite:write.
- Try to reduce code duplication some by merging most of the old
  kern_foov() and dofilefoo() functions into new dofilefoo() functions
  that are called by kern_foov() and kern_pfoov().  The non-v functions
  now all generate a simple uio on the stack from the passed in arguments
  and then call kern_foov().  For example, read() now just builds a uio and
  calls kern_readv() and pwrite() just builds a uio and calls kern_pwritev().

PR:		kern/80362
Submitted by:	Marc Olzheim marcolz at stack dot nl (1)
Approved by:	re (scottl)
MFC after:	1 week
</content>
</entry>
<entry>
<title>read(), pread(), write(), and pwrite() return EINVAL if they are asked</title>
<updated>2005-02-10T20:09:01Z</updated>
<author>
<name>Colin Percival</name>
<email>cperciva@FreeBSD.org</email>
</author>
<published>2005-02-10T20:09:01Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=75fa96cc9b9678507b5c02a2b64ec1e90c5ee01c'/>
<id>urn:sha1:75fa96cc9b9678507b5c02a2b64ec1e90c5ee01c</id>
<content type='text'>
for more than INT_MAX bytes.
</content>
</entry>
<entry>
<title>Reword the last change a bit, add mdoc(7) markup.</title>
<updated>2004-10-25T13:35:03Z</updated>
<author>
<name>Yaroslav Tykhiy</name>
<email>ytykhiy@gmail.com</email>
</author>
<published>2004-10-25T13:35:03Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=a39fd5061bf6d00966eef587b9f627a2963c062c'/>
<id>urn:sha1:a39fd5061bf6d00966eef587b9f627a2963c062c</id>
<content type='text'>
Discussed with:	bde
</content>
</entry>
<entry>
<title>Explain it is a negative offset that EINVAL may indicate.</title>
<updated>2004-10-16T09:53:35Z</updated>
<author>
<name>Yaroslav Tykhiy</name>
<email>ytykhiy@gmail.com</email>
</author>
<published>2004-10-16T09:53:35Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src/commit/?id=9a0cabd9e4baeea5e32666e02af09612d5b38211'/>
<id>urn:sha1:9a0cabd9e4baeea5e32666e02af09612d5b38211</id>
<content type='text'>
Now readers won't get an impression that pointing to beyond
the current end of file will result in EINVAL.

MFC after:	1 week
</content>
</entry>
</feed>
