summaryrefslogtreecommitdiffstats
path: root/sys/kern/exec_elf.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* New vmmap implementation.ariane2012-03-091-12/+14
* Recommit the reverted sigacts change now that the NFS use-after-freeguenther2011-07-051-5/+5
* remove compat_svr4 support. ok deraadttedu2011-07-041-8/+1
* Backout vmmap in order to repair virtual address selection algorithmsariane2011-06-061-13/+11
* Reimplement uvm/uvm_map.ariane2011-05-241-11/+13
* Revert the sigacts diff: NFS can apparently retain pointers to processesguenther2011-04-181-5/+5
* Correct the sharing of the signal handling state: stuff that shouldguenther2011-04-151-5/+5
* Push COMPAT_FREEBSD in front of a whale. Buggy, out of date, noguenther2011-04-051-8/+1
* add a BRKSIZ define and use it for the heap gap constant, decouplingtedu2010-12-151-4/+4
* don't forget to free program header sections when writingmikeb2010-09-171-1/+3
* Correct the links between threads, processes, pgrps, and sessions,guenther2010-07-261-7/+8
* struct emul's e_arglen member is expected to count in units ofguenther2010-07-241-2/+2
* Eliminate RTHREADS kernel option in favor of a sysctl. The actual statustedu2010-06-291-5/+1
* Use intermediate vaddr_t cast when casting a pointer to off_t. Preventskettenis2010-05-021-2/+2
* fix typos in comments, no code changes;schwarze2010-01-141-4/+4
* Dell's SVR4 apparently mapped page zero to the executable. We don'tguenther2009-11-191-10/+1
* We need miod's no-coredumps-on-ramdisks diff, because we have grown thederaadt2009-06-061-1/+17
* If a session leader exists s_leader is set to NULL, so don't dereference itkettenis2009-03-081-2/+5
* Make ELF platforms generate ELF core dumps. Somewhat based on code fromkettenis2009-03-051-1/+475
* vm_map_lock() around calls to uvm_map_findspace(); ok teduderaadt2008-11-101-1/+4
* Add support for the kernel to recognize, load and execute positionkurt2008-07-181-23/+53
* Oops, do not dereference a NULL function pointer used as an array endmiod2008-06-121-4/+2
* Reorder foreign binaries probe list, so that more permissive ones are at themiod2008-06-121-4/+4
* Remove the OLF os bitmask field from the compat probe functions array;miod2008-06-071-13/+7
* olf support starts to die (easy stuff first); ok miodderaadt2008-06-041-63/+3
* Maintaining a broken compatibility layer for a broken OS is not a productivebeck2007-05-281-8/+1
* ``it's'' -> ``its'' when the grammar gods require this change.miod2007-04-101-3/+3
* zap unused variable.thib2007-03-201-3/+1
* Clean up after miod.kettenis2007-03-141-1/+3
* Don't bother checking for OLF binaries if option SMALL_KERNEL.miod2007-03-131-5/+13
* Avoid void * arithmetic, okay deraadt@, suggestions from millert@pedro2006-12-291-2/+2
* grammar, spelling, and style fixes from bret lambert;jmc2006-11-141-2/+2
* Handle executables that have all load sections marked read-only.kettenis2006-07-101-1/+10
* redo (w/ proper changes everywhere ;):mickey2006-01-191-33/+29
* Backout last revision, it's broken. Try pkg_add redhat_base-8.0p7 on i386aaron2006-01-071-29/+33
* take interp[MAXPATHLEN] off the stack. from mickey, ok ottotedu2006-01-061-33/+29
* Allow binaries to run if all sections are marked writabledrahn2005-11-111-1/+8
* verify exec headers before attempting malloc. reported by Georgi Guninski.tedu2003-11-031-1/+2
* emulation is now controlled by sysctl. changes:tedu2003-08-211-1/+2
* Typos; from Julien Bordet <zejames@greyhats.org>grange2003-05-171-2/+2
* Use EI_OSABI instead of EI_BRANDmillert2003-05-131-3/+7
* Use uvm_findspace() to verify that the addresses allocated to ld.so aredrahn2003-04-161-13/+85
* Map just the requested pages not p_aligned pages. ok art@drahn2003-02-181-15/+24
* Allow more than two load sections on ELF executables, this limitdrahn2002-11-221-16/+38
* Move out the execution of vmcmds into a separate function.art2002-10-061-21/+4
* Add support for vmcmds that load sections relative to a base section.art2002-09-231-23/+40
* Mark ELF ld.so as VTEXT to prevent the file from being overwritten.drahn2002-09-181-1/+3
* Change the vnode locking in exec to not keep the vnode locked almost allart2002-08-221-2/+2
* First round of __P removal in sysmillert2002-03-141-3/+3
* New function vn_marktext - mark a vnode as executing a text image.art2001-11-151-2/+2