aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/sys_process.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* /* -> /*- for copyright notices, minor format tweaks as necessaryWarner Losh2005-01-061-1/+1
* Don't include sys/user.h merely for its side-effect of recursivelyDavid Schultz2004-11-271-1/+1
* Add pl_flags to ptrace_lwpinfo, two flags PL_FLAG_SA and PL_FLAG_BOUNDDavid Xu2004-08-081-0/+7
* - Use atomic ops for updating the vmspace's refcnt and exitingcnt.Alan Cox2004-07-271-11/+7
* Fix typo.David Xu2004-07-171-1/+1
* Implement following commands: PT_CLEARSTEP, PT_SETSTEP, PT_SUSPENDDavid Xu2004-07-131-10/+109
* Implement the PT_LWPINFO request. This request can be used by theMarcel Moolenaar2004-07-121-0/+19
* Allow ptrace to deal with lwpid.David Xu2004-07-021-6/+36
* Finish fixing up Alpha to work with an MP safe ptrace():John Baldwin2004-04-011-8/+8
* Use uiomove_fromphys() instead of pmap_qenter() and pmap_qremove() inAlan Cox2004-03-241-9/+1
* Drop the proc lock around calls to the MD functions ptrace_single_step(),John Baldwin2004-03-151-6/+11
* When reparenting a process in the PT_DETACH code, only set p_sigparentDon Lewis2004-02-191-1/+2
* When reparenting a process to init, make sure that p_sigparent isDon Lewis2004-02-111-0/+1
* Implement preliminary support for the PT_SYSCALL command to ptrace(2).Robert Drehmel2003-10-091-1/+16
* Add or finish support for machine dependent ptrace requests. When weMarcel Moolenaar2003-08-151-22/+13
* Add or correct range checking of signal numbers in system calls andJacques Vidrine2003-08-101-2/+2
* Background: When proc_rwmem() wired and mapped a page, it also addedAlan Cox2003-08-091-30/+5
* Use kmem_alloc_nofault() rather than kmem_alloc_pageable() in proc_rwmem().Alan Cox2003-08-021-1/+1
* Add vm object locking.Alan Cox2003-06-111-12/+12
* Use __FBSDID().David E. O'Brien2003-06-111-2/+3
* Push down Giant around calls to proc_rwmem() in kern_ptrace. kern_ptrace()John Baldwin2003-04-251-0/+7
* Prefer the proc lock to sched_lock when testing PS_INMEM now that it isJohn Baldwin2003-04-221-2/+1
* The sched_lock is not needed while clearing two of the P_STOPPED bits inJohn Baldwin2003-04-171-3/+2
* Whitespace cleanup.Dag-Erling Smørgrav2003-03-191-5/+5
* Add a missing PROC_UNLOCK in ptrace() for the PT_IO case.John Baldwin2002-10-161-0/+1
* Completely redo thread states.Julian Elischer2002-09-111-0/+1
* Remove bogus fill_kinfo_proc() before ptrace_set_pc(). There was no needPeter Wemm2002-09-071-1/+0
* s/SGNL/SIG/David Xu2002-09-051-1/+1
* Split up ptrace() into a wrapper that does the copying to and fromIan Dowse2002-09-051-68/+88
* Replace various spelling with FALLTHROUGH which is lint()ablePhilippe Charnier2002-08-251-1/+1
* Do preserve the error result from calling p_cansee() and use that whenRobert Watson2002-07-201-3/+1
* Lock accesses to the page queues.Alan Cox2002-07-121-0/+4
* Fix ptrace(PT_READ_*, ...) for non-little-endian architectures whereThomas Moestl2002-07-121-3/+5
* Part 1 of KSE-IIIJulian Elischer2002-06-291-2/+4
* All signals can be sent to the inferior process when it's restarted,Marcel Moolenaar2002-05-191-1/+1
* Change p_can{debug,see,sched,signal}()'s first argument to be a threadJohn Baldwin2002-05-191-2/+2