aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/imgact_aout.c
Commit message (Expand)AuthorAgeFilesLines
* Get rid of sv_errtbl and SV_ABI_ERRNO().Edward Tomasz Napierala2020-09-171-4/+0
* Make ps_strings in struct image_params into a pointer.Brooks Davis2020-04-151-1/+1
* vfs: drop the mostly unused flags argument from VOP_UNLOCKMateusz Guzik2020-01-031-1/+1
* Use uintptr_t instead of register_t * for the stack base.John Baldwin2019-12-031-4/+6
* Switch to use shared vnode locks for text files during image activation.Konstantin Belousov2019-05-051-5/+7
* Remove sv_pagesize, originally introduced with r100384.Edward Tomasz Napierala2019-03-011-2/+0
* Remove iBCS2, part2: general kernelMateusz Guzik2018-12-191-2/+0
* i386 4/4G split.Konstantin Belousov2018-04-131-5/+9
* Use C99 designated initializers for struct execswEd Maste2018-03-131-1/+4
* sys/kern: adoption of SPDX licensing ID tags.Pedro F. Giffuni2017-11-271-0/+2
* Revert r323722. A better fix will be committed shortly, as well asKonstantin Belousov2017-09-281-17/+0
* Fix handling of the segment registers on i386.Konstantin Belousov2017-09-181-0/+17
* Implement vsyscall hack. Prior to 2.13 glibc uses vsyscallDmitry Chagin2016-01-091-0/+1
* Remove sv_prepsyscall, sv_sigsize and sv_sigtbl members of the structKonstantin Belousov2015-11-281-6/+0
* Implement lockless resource limits.Mateusz Guzik2015-06-101-1/+1
* In preparation for switching linuxulator to the use the native 1:1Dmitry Chagin2015-05-241-0/+1
* Cosmetics: define FREEBSD32_MINUSER and AOUT32_MINUSER for structKonstantin Belousov2012-07-221-1/+2
* Remove an old hack I noticed years ago, but never committed.Warner Losh2012-06-281-5/+5
* Do not trash the argv[0] pointer for an a.out process on amd64.Konstantin Belousov2011-06-161-1/+1
* Fix silly typo that resulted in the a.out process stack to end atKonstantin Belousov2011-06-161-1/+1
* Add accounting for most of the memory-related resources.Edward Tomasz Napierala2011-04-051-1/+3
* Add support for executing the FreeBSD 1/i386 a.out binaries on amd64.Konstantin Belousov2011-04-011-14/+69
* Extend struct sysvec with new method sv_schedtail, which is used for anDmitry Chagin2011-03-081-0/+1
* Reorganize syscall entry and leave handling.Konstantin Belousov2010-05-231-0/+4
* Add sv_flags field to struct sysentvec with intention to provide descriptionKonstantin Belousov2008-11-221-1/+7
* Change the static struct sysentvec and struct Elf_Brandinfo initializersKonstantin Belousov2008-09-241-26/+27
* VOP_LOCK1() (and so VOP_LOCK()) and VOP_UNLOCK() are only used inAttilio Rao2008-01-131-1/+1
* vn_lock() is currently only used with the 'curthread' passed as argument.Attilio Rao2008-01-101-3/+2
* Fix for the panic("vm_thread_new: kstack allocation failed") andKonstantin Belousov2007-11-051-1/+3
* Correct two vm object reference leaks in error cases.Alan Cox2006-03-161-0/+2
* Maintain the lock on the vnode for most of exec_elfN_imgact().Alan Cox2005-12-241-2/+13
* - Neither of our image formats require Giant now that the vm and vfs haveJeff Roberson2005-05-031-2/+0
* o Split out kernel part of execve(2) syscall into two parts: one thatMaxim Sobolev2005-01-291-6/+1
* /* -> /*- for copyright notices, minor format tweaks as necessaryWarner Losh2005-01-061-1/+1
* Axe a.out core dump support. Neither older gdb binaries nor currentDavid Schultz2004-11-271-54/+1
* Maintain the broken state of backwards compatibilty for a.out (andDavid Schultz2004-11-201-2/+3
* Change the types of vn_rdwr_inchunks()'s len and aresid arguments toTim J. Robbins2004-06-051-1/+1
* Locking for the per-process resource limits structure.John Baldwin2004-02-041-3/+5
* Add sysentvec->sv_fixlimits() hook so that we can catch cases on 64 bitPeter Wemm2003-09-251-1/+2
* Use __FBSDID().David E. O'Brien2003-06-111-2/+3
* Back out M_* changes, per decision of the TRB.Warner Losh2003-02-191-1/+1
* Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0.Alfred Perlstein2003-01-211-1/+1
* Use the fields in the sysentvec and in the vm map header in place of theJake Burkholder2002-09-211-4/+4
* Include <sys/malloc.h> instead of depending on namespace pollution 2Bruce Evans2002-09-101-8/+5
* Tidy up some loose ends that bde pointed out. caddr_t bad, ok?Peter Wemm2002-09-071-7/+7
* The true value of how the kernel was configured for KSTACK_PAGES was notPeter Wemm2002-09-071-8/+6
* Collect the a.out coredump code into the calling functions.Peter Wemm2002-09-071-1/+16
* Added fields for VM_MIN_ADDRESS, PS_STRINGS and stack protections toJake Burkholder2002-09-011-6/+24
* In order to better support flexible and extensible access control,Robert Watson2002-08-151-2/+2
* - Hold the vnode lock throughout execve.Jeff Roberson2002-08-131-4/+0