John Baldwin bcd9e0dd20 - Add two new system calls: preadv() and pwritev() which are like readv()
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
2005-07-07 18:17:55 +00:00
..
2005-04-23 18:45:36 +00:00
2005-02-13 22:25:33 +00:00
2005-06-15 19:04:04 +00:00
2005-02-06 03:23:31 +00:00
2005-06-16 19:01:07 +00:00
2005-06-15 19:04:04 +00:00
2005-07-03 12:35:11 +00:00
2005-04-25 02:29:03 +00:00
2005-03-10 08:25:49 +00:00
2005-02-13 23:45:54 +00:00