<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src-test2/lib/libc/sys/write.2, branch release/8.2.0_cvs</title>
<subtitle>FreeBSD source tree</subtitle>
<id>https://cgit-dev.freebsd.org/src-test2/atom?h=release%2F8.2.0_cvs</id>
<link rel='self' href='https://cgit-dev.freebsd.org/src-test2/atom?h=release%2F8.2.0_cvs'/>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/'/>
<updated>2011-02-16T16:18:46Z</updated>
<entry>
<title>Copy releng/8.2 to release/8.2.0 for 8.2-RELEASE.</title>
<updated>2011-02-16T16:18:46Z</updated>
<author>
<name>Ken Smith</name>
<email>kensmith@FreeBSD.org</email>
</author>
<published>2011-02-16T16:18:46Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=dec99dafe5763ba1db6950342aa80a634169c083'/>
<id>urn:sha1:dec99dafe5763ba1db6950342aa80a634169c083</id>
<content type='text'>
Approved by:	re (implicit)

This commit was manufactured to restore the state of the 8.2-RELEASE image.
</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-test2/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-test2/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-test2/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-test2/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-test2/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-test2/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-test2/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-test2/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>
<entry>
<title>Mechanically kill hard sentence breaks.</title>
<updated>2004-07-02T23:52:20Z</updated>
<author>
<name>Ruslan Ermilov</name>
<email>ru@FreeBSD.org</email>
</author>
<published>2004-07-02T23:52:20Z</published>
<link rel='alternate' type='text/html' href='https://cgit-dev.freebsd.org/src-test2/commit/?id=1a0a934547909744a6a2fa4cfd5b795ec6394f05'/>
<id>urn:sha1:1a0a934547909744a6a2fa4cfd5b795ec6394f05</id>
<content type='text'>
</content>
</entry>
</feed>
