jhb 71c05d27c0 - Tweak kern_msgctl() to return a copy of the requested message queue id
structure in the struct pointed to by the 3rd argument for IPC_STAT and
  get rid of the 4th argument.  The old way returned a pointer into the
  kernel array that the calling function would then access afterwards
  without holding the appropriate locks and doing non-lock-safe things like
  copyout() with the data anyways.  This change removes that unsafeness and
  resulting race conditions as well as simplifying the interface.
- Implement kern_foo wrappers for stat(), lstat(), fstat(), statfs(),
  fstatfs(), and fhstatfs().  Use these wrappers to cut out a lot of
  code duplication for freebsd4 and netbsd compatability system calls.
- Add a new lookup function kern_alternate_path() that looks up a filename
  under an alternate prefix and determines which filename should be used.
  This is basically a more general version of linux_emul_convpath() that
  can be shared by all the ABIs thus allowing for further reduction of
  code duplication.
2005-02-07 18:44:55 +00:00
..
2005-01-26 02:29:18 +00:00
2005-01-29 16:50:04 +00:00
2004-11-08 18:22:22 +00:00
2005-02-07 18:38:29 +00:00
2004-07-10 21:43:23 +00:00
2004-12-30 20:30:58 +00:00
2004-06-17 17:16:53 +00:00
2005-02-07 09:26:39 +00:00
2005-02-07 09:26:58 +00:00