summaryrefslogtreecommitdiffstats
path: root/sys/compat/linux/linux_dummy.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* remove the Linux emulation code, no longer referenced by anythingnaddy2016-03-021-144/+0
|
* Add dummies for the epoll and eventfd syscall families.pirofti2012-06-191-1/+9
| | | | Okay jasper@
* implement prctl() for COMPAT_LINUXrobert2011-12-141-2/+1
| | | | ok pirofti@
* implement chown(2) in compat_linux which is needed by some antivirus softwarerobert2011-11-251-5/+4
| | | | ok pirofti@
* Fix PID fetching -- noticed last night by guenther@.pirofti2011-04-051-2/+2
|
* Add support for sys_setre[ug]id, ok deraadt@niklas2004-10-271-3/+1
|
* madvise works fine without translation, from Sam Smith.tedu2004-04-051-2/+1
|
* dummy xattr syscalls. ok deraadt@tedu2003-09-041-1/+23
|
* set fadvise64 as dummy. some binaries compiled with a recent glibcfgsch2003-09-011-1/+2
| | | | seems to require it; henning ok.
* add sys_sysinfo. from marius aamodt eriksen.tedu2003-07-231-2/+1
| | | | linux_misc.c: fvdl gave his copyright to tnf, adjust.
* add mmap2 (mmap64, take your pick) and clean up some. use MAP_TRYFIXEDtedu2003-07-031-2/+1
| | | | | since that's the way linux works. no regressions by various ports testers, eyeballed by a few others.
* Now that we have [gs]etres[ug]id() as a native system call, use itmillert2002-10-301-4/+1
| | | | | | for HP-UX, FreeBSD, and Linux emulations. Note that Linux has two versions of these system calls. One for 16bit uids and another for 32bit uids.
* getdents64 support, based on FreeBSD.fgsch2002-10-281-2/+1
| | | | thanks to jpmk@fibertel.com.ar for providing a testbed; jasoni ok.
* withough -> withoutderaadt2002-06-021-2/+2
|
* Turn the ptrace(2) syscall into a kernel compile option, option PTRACE inmiod2002-03-141-1/+3
| | | | | | | | | | | | | your kernel configuration file. By default, GENERIC will enable this. When PTRACE is not enabled, several ptrace-like features of the procfs filesystem will be disabled as well (namely, the ability to read and write any process' registers, as well as attching, single stepping and detaching to/from processes). This should help paranoid people build better sandboxens, and us to build smaller ramdisks.
* fcntl64 support; okay deraadt@provos2002-02-041-2/+1
|
* add new system calls as dummies, except for those which we already havejasoni2001-07-041-1/+15
| | | | | an equivalent for; from netbsd ok niklas@
* On popular demand, the Linux-compatibility clone(2) implementation basedniklas2001-04-021-9/+1
| | | | | on NetBSD's code, as well as some faked Posix RT extensions by me. This makes at least simple linuxthreads tests work.
* implement ftruncate64jasoni2001-01-291-2/+1
|
* Implement truncate64, stat64, lstat64, fstat64; from NetBSDjasoni2000-12-221-5/+1
|
* Change all UNIMPL and OBSOL syscalls to STD.jasoni2000-07-071-0/+122
Add these syscalls to linux_dummy.c where they return ENOSYS and display a friendler message which tells you what unimplemented syscall has been called.