aboutsummaryrefslogtreecommitdiff
path: root/sys/compat
Commit message (Expand)AuthorAgeFilesLines
* Completely redo thread states.Julian Elischer2002-09-111-6/+1
* Tidy up some loose ends that bde pointed out. caddr_t bad, ok?Peter Wemm2002-09-071-7/+6
* The true value of how the kernel was configured for KSTACK_PAGES was notPeter Wemm2002-09-071-8/+7
* Fix a missing line in a cut/paste error.Peter Wemm2002-09-071-0/+1
* Collect the a.out coredump code into the calling functions.Peter Wemm2002-09-071-1/+15
* Do not cast from a pointer to an integer of a possibly different size.Bruce Evans2002-09-051-1/+1
* Include <sys/malloc.h> instead of depending on namespace pollution 2Bruce Evans2002-09-054-14/+10
* Implement LINUX_TIOCSCTTY.Marcel Moolenaar2002-09-051-1/+4
* Use the new kern_*() functions to avoid using the stack gap inIan Dowse2002-09-022-90/+49
* Use the new kern_* functions to avoid the need to store argumentsIan Dowse2002-09-016-328/+264
* Added fields for VM_MIN_ADDRESS, PS_STRINGS and stack protections toJake Burkholder2002-09-013-10/+29
* Add a new function linux_emul_convpath(), which is a version ofIan Dowse2002-09-012-32/+64
* Make this compile.Jake Burkholder2002-08-311-1/+2
* Implement data, text, and vmem limit checking in the elf loader and svr4Matthew Dillon2002-08-302-4/+3
* Replace (ab)uses of "NULL" where "0" is really meant.Archie Cobbs2002-08-221-1/+1
* Increase size of ifnet.if_flags from 16 bits (short) to 32 bits (int). To avoidMaxim Sobolev2002-08-181-1/+1
* In continuation of early fileop credential changes, modify fo_ioctl() toRobert Watson2002-08-178-41/+79
* Make similar changes to fo_stat() and fo_poll() as made earlier toRobert Watson2002-08-161-6/+6
* In order to better support flexible and extensible access control,Robert Watson2002-08-151-3/+3
* On MAC check failure for readdir, use 'goto out' to use the common exitRobert Watson2002-08-151-1/+1
* - Add the missing td argument to vn_lock that I missed in my last commit.Jeff Roberson2002-08-131-1/+1
* - Hold the vnode lock throughout execve.Jeff Roberson2002-08-132-18/+23
* Enforce MAC policies for the locally implemented vnode services inRobert Watson2002-08-122-0/+28
* Another fix that wasn't pulled in from the MAC branch: theRobert Watson2002-08-121-1/+2
* Fix missing parens in MAC readdir() check. This fix was in the MACRobert Watson2002-08-121-1/+1
* - Replace v_flag with v_iflag and v_vflagJeff Roberson2002-08-044-4/+7
* Introduce support for Mandatory Access Control and extensibleRobert Watson2002-08-014-2/+45
* RegeneratePeter Wemm2002-07-203-1596/+311
* Infrastructure tweaks to allow having both an Elf32 and an Elf64 executablePeter Wemm2002-07-209-335/+2332
* Move the switch statement labels for the explicit 64-bitRobert Drehmel2002-07-091-3/+3
* Enable emulation of the F_GETLK64, F_SETLK64, and F_SETLKW64Robert Drehmel2002-07-091-0/+3
* The comment marked with XXX was right: emulate SVR4 forRobert Drehmel2002-07-091-1/+1
* Part 1 of KSE-IIIJulian Elischer2002-06-292-22/+48
* - Remove the Giant acquisition from linux_socket_ioctl() as it was reallyAndrew R. Reiter2002-06-261-11/+2
* Add a comment about how we should use vn_open() here instead of directlyRobert Watson2002-06-141-0/+4
* catch up with ktrace changes, KTRPOINT takes a 'struct thread' notAlfred Perlstein2002-06-111-2/+2
* Catch up to changes in ktrace API.John Baldwin2002-06-071-2/+2
* Fix typo in the BSD copyright: s/withough/without/Jens Schweikhardt2002-06-029-9/+9
* Back out my lats commit of locking down a socket, it conflicts with hsu's work.Seigo Tanimura2002-05-312-23/+10
* correct commented out preprocessor test for i386 to __i386__Alfred Perlstein2002-05-301-1/+1
* Fixed a printf format error. It was old and should have been detected byBruce Evans2002-05-251-1/+1
* Lock down a socket, milestone 1.Seigo Tanimura2002-05-202-10/+23
* Change p_can{debug,see,sched,signal}()'s first argument to be a threadJohn Baldwin2002-05-191-1/+1
* In msgrcv(), set msgtyp correctly. Hardwiring 0 as the message typeMarcel Moolenaar2002-05-181-1/+1
* sysctl -w -> sysctlDima Dorfman2002-05-111-2/+2
* Zap some stale unused headers, including one machine/psl.h (which isPeter Wemm2002-05-011-6/+0
* Add an XXX: linux_uselib() should be using vn_open() rather than invokingRobert Watson2002-04-201-0/+4
* - Lock proctree_lock instead of pgrpsess_lock.John Baldwin2002-04-161-1/+1
* Rework logic of syscalls that modify process credentials as described inJohn Baldwin2002-04-132-25/+39
* - p_cansee() needs the target process locked.John Baldwin2002-04-131-17/+15