aboutsummaryrefslogtreecommitdiff
path: root/sys/compat
Commit message (Expand)AuthorAgeFilesLines
* useracc() the prequel:Poul-Henning Kamp1999-10-293-3/+0
* Fix the duplicate filenames that are the result of using getdents.Marcel Moolenaar1999-10-211-1/+1
* Remove unnecessary includes.Mark Newton1999-10-172-20/+0
* Remove unnecessary includes.Mark Newton1999-10-1715-55/+4
* Add a per-signal flag to mark handlers registered with osigaction, so weLuoqi Chen1999-10-111-1/+1
* Swap IOC_OUT and IOC_IN for the SETDIR macro. The linux ioctl read andJohn Hay1999-10-061-1/+1
* Removal of sys/device.hNick Hibma1999-10-051-1/+0
* Oops. That'll teach me to commit without testing. I either replacedPeter Wemm1999-10-011-1/+1
* Zap a trigraph (???)Peter Wemm1999-10-011-1/+1
* sigset_t change (part 4 of 5)Marcel Moolenaar1999-09-296-343/+416
* This patch clears the way for removing a number of tty relatedPoul-Henning Kamp1999-09-251-4/+5
* Linux doesn't complain if you remove a msg queue that doesn't existMarcel Moolenaar1999-09-231-1/+3
* Implement linux_ioperm() syscall. Fix linux_iopl() to use the level argument.Luoqi Chen1999-09-221-6/+25
* This is what was "fdfix2.patch," a fix for fd sharing. It's prettyBrian Feldman1999-09-198-55/+41
* Fix getcwd. It must return the length of the path including the terminating 0.Marcel Moolenaar1999-09-171-6/+19
* <machine/soundcard.h> -> <sys/soundcard.h>, since it's an exported APIPeter Wemm1999-09-041-1/+1
* I missed the namechange of field desc in struct i386_ldt_args into descs whileMarcel Moolenaar1999-09-031-2/+2
* Implementation of the modify_ldt syscall. Use the sysarch() interface to doMarcel Moolenaar1999-09-021-0/+84
* Add MAINTAINER lineMark Newton1999-09-011-0/+2
* Fix a braino: Linux minor device numbers are 8 bits wide and not 10.Marcel Moolenaar1999-08-291-1/+1
* Fix a missing '-1' in the size argument of copyout in getgroups. Spotted whileMarcel Moolenaar1999-08-291-6/+6
* Implement the OSS_GETVERSION ioctl. The version returned can be changed throughMarcel Moolenaar1999-08-281-0/+8
* $Id$ -> $FreeBSD$Peter Wemm1999-08-282-2/+2
* $Id$ -> $FreeBSD$Peter Wemm1999-08-2861-61/+61
* Add sysctl variables for the Linuxulator. These reside under `compat.linux' asMarcel Moolenaar1999-08-273-3/+282
* Simplify the handling of VCHR and VBLK vnodes using the new dev_t:Poul-Henning Kamp1999-08-261-2/+2
* Fix linux_newlstat in that it doesn't return the attributes of its containingMarcel Moolenaar1999-08-251-117/+104
* Fix {g|s}etgroups semantics. We use cr_groups[0] to hold egid. This means thatMarcel Moolenaar1999-08-251-53/+70
* Change all UNIMPL syscalls to STD and add them to linux_dummy. Now we alwaysMarcel Moolenaar1999-08-251-28/+14
* Fix a bug in debug-printfs of struct linux_termios fields, where I forgot toMarcel Moolenaar1999-08-171-5/+5
* Fix bug in the debug-printf of the vfork syscall, where the format specifierMarcel Moolenaar1999-08-171-24/+24
* Implement linux_vfork() syscall by calling vfork(). Analogous to theMarcel Moolenaar1999-08-161-1/+18
* Provide wrappers for sched_{s|g}etscheduler. We need to convert the policyMarcel Moolenaar1999-08-151-1/+65
* Fix bug in the fcntl syscall where 'arg' was not set properly.Marcel Moolenaar1999-08-151-2/+4
* Include opt_compat.h so that COMPAT_43 is defined. This gives us the properMarcel Moolenaar1999-08-151-10/+15
* Implementation of the linux_getcwd syscall.Marcel Moolenaar1999-08-141-1/+16
* Implementation of linux_rt_sigaction and linux_rt_sigprocmask syscalls. BothMarcel Moolenaar1999-08-141-74/+215
* Fix LINUX_TIOC{S|G}SERIAL implementation. Both do not copy data in or outMarcel Moolenaar1999-08-141-25/+21
* Avoid possible panic by checking for EFAULT from copyinstr() duringMark Newton1999-08-141-5/+12
* Fix the LINUX_TCSET{A|AW|AF} and LINUX_TCSET{S|SW|SF} ioctls. These all sufferMarcel Moolenaar1999-08-141-7/+28
* Fix a couple of termio/termios conversion bugs/typos/dupos/brainos and otherMarcel Moolenaar1999-08-141-18/+23
* Implementation of the CDROMSUBCHNL ioctl.Marcel Moolenaar1999-08-131-1/+65
* In doing lock type conversion (struct flock), make sure that carbage in resultsMarcel Moolenaar1999-08-131-2/+5
* Use a wrapper for the link syscall that does name translations.Marcel Moolenaar1999-08-121-1/+20
* Do not map {s|g}etrlimit onto FreeBSD syscalls. The arguments don't match.Marcel Moolenaar1999-08-111-1/+52
* Fix page fault in linux_uselib syscall.Marcel Moolenaar1999-08-081-2/+2
* We don't end up checking for a return value of EFAULT from the copyinstr()Brian Feldman1999-08-071-5/+12
* Previous commit also removed some 'const' qualifiers on args forMark Newton1999-07-301-1/+1
* Previous commit also finished cleaning up some dev_t -> udev_t transformationsMark Newton1999-07-305-5/+5
* Fix svr4_sys_poll(); SysV STREAMS produce return values from poll() whichMark Newton1999-07-301-6/+2