aboutsummaryrefslogtreecommitdiff
path: root/sys/i386/linux/syscalls.conf
Commit message (Collapse)AuthorAgeFilesLines
* makesyscalls: don't make syscall.mk by defaultBrooks Davis2023-11-181-1/+0
| | | | | | | | | | | We only want to produce syscall.mk for the main syscall table so default to not producing it (send it to /dev/null) and add a syscalls.conf to sys/kern to trigger the creation of sys/sys/syscall.mk. This eliminates the need for entries in other syscalls.conf files and is a cleaner pattern going forward. Reviewed by: kevans, imp Differential Revision: https://reviews.freebsd.org/D42663
* sys: Remove $FreeBSD$: one-line sh patternWarner Losh2023-08-161-1/+0
| | | | Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
* sysent: move away from allowing all compat options for other ABIsKyle Evans2021-12-171-0/+1
| | | | | | | | | | | | | | | Notably, the current compat_options only makes sense for native and freebsd32 ABIs. For the others, it just adds cruft. Switch to having sets of compat options, and default to the native set. Setup the other ABIs where it doesn't make sense to opt-out of the native set. This removes some redundant COMPAT_FREEBSD* stuff from Linuxolator bits. line_expr in makesyscalls.lua is fixed to allow empty strings to be specified, since they're harmless. Reviewed by: brooks, kib (both earlier version) Differential Revision: https://reviews.freebsd.org/D33356
* add DTrace systrace support for linux32 and freebsd32 on amd64 syscallsAndriy Gapon2011-03-121-2/+2
| | | | | | | | | | | | | This commits makes necessary changes in syscall/sysent generation infrastructure. PR: kern/152822 Submitted by: Artem Belevich <fbsdlist@src.cx> Reviewed by: jhb (ealier version) MFC after: 3 weeks Notes: svn path=/head/; revision=219559
* - Remove unused sysvec variables from various syscalls.conf.John Baldwin2006-08-151-1/+1
| | | | | | | | | | | | - Send the systrace_args files for all the compat ABIs to /dev/null for now. Right now makesyscalls.sh generates a file with a hardcoded function name, so it wouldn't work for any of the ABIs anyway. Probably the function name should be configurable via a 'systracename' variable and the functions should be stored in a function pointer in the sysvec structure. Notes: svn path=/head/; revision=161328
* GC unused 'syshide' override to /dev/null. This was here to disablePeter Wemm2003-12-241-1/+0
| | | | | | | | the output of the namespc column. Its functionality was removed some time ago, but the overrides and the namespc column remained. Notes: svn path=/head/; revision=123790
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
| | | | Notes: svn path=/head/; revision=50477
* Added a null entry for sysmk that is generated by makesyscalls.sh.John Birrell1998-03-131-1/+2
| | | | | | | | | | | Gee, I wish there was a better way to run makesyscalls.sh so that a make world finds missing things like this. Running it manually sucks. Pointed out by: Peter Dufault Notes: svn path=/head/; revision=34552
* Back out part 1 of the MCFH that changed $Id$ to $FreeBSD$. We are notPeter Wemm1997-02-221-1/+1
| | | | | | | ready for it yet. Notes: svn path=/head/; revision=22975
* Make the long-awaited change from $Id$ to $FreeBSD$Jordan K. Hubbard1997-01-141-1/+1
| | | | | | | | | | | This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise. Notes: svn path=/head/; revision=21673
* A new syscalls table for the Linux emulator. This is processed byPeter Wemm1996-03-021-0/+11
makesyscalls.sh to generate the rest of the tables. Notes: svn path=/head/; revision=14330