aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/sys_process.c
Commit message (Expand)AuthorAgeFilesLines
* Allow the parent to gather the exit status of the children reparentedKonstantin Belousov2012-02-231-3/+0
* Mark the automatically attached child with PL_FLAG_CHILD in structKonstantin Belousov2012-02-101-0/+2
* In order to maximize the re-usability of kernel code in user space thisKip Macy2011-09-161-2/+2
* Add comment from CSRG rev 7.27 (1992/06/23 19:56:55; author: mckusick)David E. O'Brien2011-06-171-0/+9
* We should not return ECHILD when debugging a child and the parent does aDavid E. O'Brien2011-06-141-2/+6
* Add macro to test the sv_flags of any process. Change some places to testDmitry Chagin2011-01-261-1/+1
* Allow debugger to specify that children of the traced process should beKonstantin Belousov2011-01-251-1/+15
* Introduce vm_fault_hold() and use it to (1) eliminate a long-standing raceAlan Cox2010-12-201-63/+17
* Add the ability for GDB to printout the thread name along with otherAttilio Rao2010-11-221-0/+3
* Create a global thread hash table to speed up thread lookup, useDavid Xu2010-10-091-14/+3
* Extend ptrace(PT_LWPINFO) to report siginfo for the signal that causedKonstantin Belousov2010-07-041-3/+62
* Use ISO C99 integer types in sys/kern where possible.Ed Schouten2010-06-211-3/+3
* Ignore the 'addr' argument passed to PT_STEP (it is required to be '1'John Baldwin2010-05-251-14/+20
* Reorganize syscall entry and leave handling.Konstantin Belousov2010-05-231-2/+6
* On Alan's advice, rather than do a wholesale conversion on a singleKip Macy2010-04-301-4/+4
* Provide groundwork for 32-bit binary compatibility on non-x86 platforms,Nathan Whitehorn2010-03-111-16/+14
* Initialize pve_fsid and pve_fileid to VNOVAL.Marcel Moolenaar2010-02-111-0/+3
* o Add support for COMPAT_IA32.Marcel Moolenaar2010-02-111-69/+123
* Unbreak building kernels with COMPAT_32 enabled. The actual supportMarcel Moolenaar2010-02-091-0/+19
* Add PT_VM_TIMESTAMP and PT_VM_ENTRY so that the tracing process canMarcel Moolenaar2010-02-091-0/+103
* For PT_TO_SCE stop that stops the ptraced process upon syscall entry,Konstantin Belousov2010-01-231-0/+5
* Replace VM_PROT_OVERRIDE_WRITE by VM_PROT_COPY. VM_PROT_OVERRIDE_WRITE hasAlan Cox2009-11-261-9/+12
* Update a comment to reflect the previous change.Alan Cox2009-10-251-1/+1
* o Introduce vm_sync_icache() for making the I-cache coherent withMarcel Moolenaar2009-10-211-0/+4
* Clean up a number of aspects of token generation from audit arguments toRobert Watson2009-07-021-1/+0
* Replace AUDIT_ARG() with variable argument macros with a set more moreRobert Watson2009-06-271-5/+5
* Implement global and per-uid accounting of the anonymous memory. AddKonstantin Belousov2009-06-231-1/+5
* Use the p_sysent->sv_flags flag SV_ILP32 to detect 32bit processKonstantin Belousov2009-03-021-5/+4
* Revert rev 184216 and 184199, due to the way the thread_lock works,David Xu2008-11-051-0/+2
* Actually, for signal and thread suspension, extra process spin lock isDavid Xu2008-10-231-2/+0
* Move per-thread userland debugging flags into seperated field,David Xu2008-10-151-11/+6
* - Relax requirements for p_numthreads, p_threads, p_swtick, and p_nice fromJeff Roberson2008-03-191-5/+1
* Remove kernel support for M:N threading.Jeff Roberson2008-03-121-15/+0
* Use VM_FAULT_DIRTY to fault in pages for write access inStephan Uphoff2007-11-081-2/+3
* - Fix from pr kern/115469; Don't redeliver a signal once it has beenJeff Roberson2007-10-091-9/+9
* - Move all of the PS_ flags into either p_flag or td_flags.Jeff Roberson2007-09-171-1/+1
* Commit 14/14 of sched_lock decomposition.Jeff Roberson2007-06-051-15/+18
* Remove 'MPSAFE' annotations from the comments above most system calls: allRobert Watson2007-03-041-3/+0
* Make KSE a kernel option, turned on by default in all GENERICJohn Birrell2006-10-261-0/+6
* Move sigqueue_take() call into proc_reparent(), this fixed bugs whereDavid Xu2006-10-251-5/+1
* Close a race condition where num can be larger than tmp, giving the userTom Rhodes2006-10-141-1/+1
* Fix a signedness bug.Colin Percival2006-08-201-1/+1
* Close some races between procfs/ptrace and exit(2):John Baldwin2006-02-221-104/+60
* Audit the arguments to the ptrace(2) system call.Wayne Salamon2006-02-141-0/+7
* Add members pl_sigmask and pl_siglist into ptrace_lwpinfo to get lwp'sDavid Xu2006-02-061-0/+2
* Avoid kernel panic when attaching a process which may not be stoppedDavid Xu2005-12-241-26/+30
* Make sure pending SIGCHLD is removed from previous parent when processDavid Xu2005-11-081-1/+10
* Fix a LOR between sched_lock and sleep queue lock.David Xu2005-08-191-2/+4
* Jumbo-commit to enhance 32 bit application support on 64 bit kernels.Peter Wemm2005-06-301-22/+178
* Add missing cases for PT_SYSCALL.David Schultz2005-03-181-0/+2