aboutsummaryrefslogtreecommitdiff
path: root/sys/compat/linux/linux_ipc.c
Commit message (Collapse)AuthorAgeFilesLines
* Mega MFC: This syncs-up the Linuxulator with -current and henceMarcel Moolenaar2001-11-051-127/+149
| | | | | | | | | | allows Linux_base-7 to work properly. tested on alpha by: gallatin (thanks!) tested on i386 by: marcel (among others probably) Notes: svn path=/stable/4/; revision=86095
* MFC: allow AlphaLinux compat bits to build.David E. O'Brien2000-11-021-13/+19
| | | | | | | Approved by: JKH Notes: svn path=/stable/4/; revision=68265
* This commit was manufactured by cvs2svn to create branch 'RELENG_4'.cvs2svn2000-08-231-0/+447
| | | | Notes: svn path=/stable/4/; revision=65026
* This commit was manufactured by cvs2svn to create branch 'RELENG_4'.cvs2svn2000-03-131-490/+0
| | | | Notes: svn path=/stable/4/; revision=57955
* Linux doesn't complain if you remove a msg queue that doesn't existMarcel Moolenaar1999-09-231-1/+3
| | | | | | | (given the proper permissions). Notes: svn path=/head/; revision=51602
* $Id$ -> $FreeBSD$Peter Wemm1999-08-281-1/+1
| | | | Notes: svn path=/head/; revision=50477
* ".. x11amp appears to be calling shmctl(id, IPC_RMID, 0) and the emulationJordan K. Hubbard1998-06-021-9/+13
| | | | | | | | | | | layer does not like the null shmid_ds buffer pointer. The emulation layer returned an error without ever calling FreeBSD's shmctl, so the segments were not being deleted when the reference count went to zero." Submitted by: Kevin Street <street@iname.com> Notes: svn path=/head/; revision=36587
* Move the "retval" (3rd) parameter from all syscall functions and putPoul-Henning Kamp1997-11-061-51/+51
| | | | | | | | | | | | | | | it in struct proc instead. This fixes a boatload of compiler warning, and removes a lot of cruft from the sources. I have not removed the /*ARGSUSED*/, they will require some looking at. libkvm, ps and other userland struct proc frobbing programs will need recompiled. Notes: svn path=/head/; revision=30994
* Implement linux_semop, linux_semget and linux_semctl.KATO Takenori1997-10-281-4/+136
| | | | | | | PR: 4355 Notes: svn path=/head/; revision=30804
* Ops the arguments to copyin was in the wrong order..Søren Schmidt1997-08-101-2/+2
| | | | | | | This has survived since the first version, sigh. Notes: svn path=/head/; revision=28039
* 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
* Clean up -Wunused warnings.Gary Palmer1996-06-121-2/+1
| | | | | | | Reviewed by: bde Notes: svn path=/head/; revision=16322
* Mega-commit for Linux emulator update.. This has been stress tested underPeter Wemm1996-03-021-24/+30
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | netscape-2.0 for Linux running all the Java stuff. The scrollbars are now working, at least on my machine. (whew! :-) I'm uncomfortable with the size of this commit, but it's too inter-dependant to easily seperate out. The main changes: COMPAT_LINUX is *GONE*. Most of the code has been moved out of the i386 machine dependent section into the linux emulator itself. The int 0x80 syscall code was almost identical to the lcall 7,0 code and a minor tweak allows them to both be used with the same C code. All kernels can now just modload the lkm and it'll DTRT without having to rebuild the kernel first. Like IBCS2, you can statically compile it in with "options LINUX". A pile of new syscalls implemented, including getdents(), llseek(), readv(), writev(), msync(), personality(). The Linux-ELF libraries want to use some of these. linux_select() now obeys Linux semantics, ie: returns the time remaining of the timeout value rather than leaving it the original value. Quite a few bugs removed, including incorrect arguments being used in syscalls.. eg: mixups between passing the sigset as an int, vs passing it as a pointer and doing a copyin(), missing return values, unhandled cases, SIOC* ioctls, etc. The build for the code has changed. i386/conf/files now knows how to build linux_genassym and generate linux_assym.h on the fly. Supporting changes elsewhere in the kernel: The user-mode signal trampoline has moved from the U area to immediately below the top of the stack (below PS_STRINGS). This allows the different binary emulations to have their own signal trampoline code (which gets rid of the hardwired syscall 103 (sigreturn on BSD, syslog on Linux)) and so that the emulator can provide the exact "struct sigcontext *" argument to the program's signal handlers. The sigstack's "ss_flags" now uses SS_DISABLE and SS_ONSTACK flags, which have the same values as the re-used SA_DISABLE and SA_ONSTACK which are intended for sigaction only. This enables the support of a SA_RESETHAND flag to sigaction to implement the gross SYSV and Linux SA_ONESHOT signal semantics where the signal handler is reset when it's triggered. makesyscalls.sh no longer appends the struct sysentvec on the end of the generated init_sysent.c code. It's a lot saner to have it in a seperate file rather than trying to update the structure inside the awk script. :-) At exec time, the dozen bytes or so of signal trampoline code are copied to the top of the user's stack, rather than obtaining the trampoline code the old way by getting a clone of the parent's user area. This allows Linux and native binaries to freely exec each other without getting trampolines mixed up. Notes: svn path=/head/; revision=14331
* reran makesyscallsPeter Wemm1996-01-081-2/+1
| | | | | | | | Always call the SYSV ipc functions, stubs will take their place if necessary. Notes: svn path=/head/; revision=13334
* The Linux emulator depends on SYSV IPC but doesn't actually referenceGarrett Wollman1996-01-051-1/+3
| | | | | | | the options. Notes: svn path=/head/; revision=13264
* My first shot at get sound to work on the emulator.Søren Schmidt1995-12-291-5/+45
| | | | | | | | Inspired by the work Amancio Hasty has done, but implemented somewhat differently. Notes: svn path=/head/; revision=13111
* Update linux_ipc.c to use the now generated prototypes for the shm* callsPeter Wemm1995-12-151-9/+9
| | | | | | | it makes while emulating the linux equivalents. Notes: svn path=/head/; revision=12867
* Completed function declarations and added prototypes.Bruce Evans1995-11-221-6/+4
| | | | | | | | | Removed some unnecessary #includes. Fixed warnings about nested externs. Notes: svn path=/head/; revision=12458
* First incarnation of our Linux emulator or rather compatibility code.Søren Schmidt1995-06-251-0/+308
This first shot only incorporaties so much functionality that DOOM can run (the X version), signal handling is VERY weak, so is many other things. But it meets my milestone number one (you guessed it - running DOOM). Uses /compat/linux as prefix for loading shared libs, so it won't conflict with our own libs. Kernel must be compiled with "options COMPAT_LINUX" for this to work. Notes: svn path=/head/; revision=9313