aboutsummaryrefslogtreecommitdiff
path: root/sys/kern/sys_process.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Remove trace_req().Jonathan Mini2002-05-091-7/+0
* GCC 3.x WARNS: Add a break to the default case.Marcel Moolenaar2002-04-201-0/+1
* Don't allow one to trace an ancestor when already traced.Alfred Perlstein2002-04-141-1/+14
* Rework ptrace(2) to be more locking friendly. We do any needed copyin()'sJohn Baldwin2002-04-121-86/+114
* - Change fill_kinfo_proc() to require that the process is locked when itJohn Baldwin2002-04-091-0/+2
* Convert all pmap_kenter/pmap_kremove pairs in MI code to use pmap_qenter/Jake Burkholder2002-03-171-2/+2
* Implement PT_IO (read / write arbitrary amounts of data or text).Dag-Erling Smørgrav2002-03-161-0/+31
* PT_[GS]ET{,DB,FP}REGS isn't really optional any more, since we have dummyDag-Erling Smørgrav2002-03-151-25/+1
* Back out all the pmap related stuff I've touched over the last few days.Peter Wemm2002-02-271-2/+2
* Jake further reduced IPI shootdowns on sparc64 in loops by using rangedPeter Wemm2002-02-271-2/+2
* Lock struct pgrp, session and sigio.Seigo Tanimura2002-02-231-3/+3
* Fixed some style bugs. Added a comment about a bug in PT_SSTEP.Bruce Evans2002-02-211-25/+21
* Recover bits that were lost in transition in rev.1.76:Bruce Evans2002-02-211-16/+77
* Bah, I managed to turn cosmetic things into real bugs. Fix shadowedPeter Wemm2002-02-081-12/+12
* Fix a whole bunch of long lines introduced by previous commit by usingPeter Wemm2002-02-071-11/+15
* Pre-KSE/M3 commit.Julian Elischer2002-02-071-10/+10
* Move procfs_* from procfs_machdep.c into sys_process.c, and rename them toDag-Erling Smørgrav2001-10-211-6/+36
* Dissociate ptrace from procfs.Dag-Erling Smørgrav2001-10-071-186/+205
* Final style(9) commit: placement of opening brace; a continuation indent IDag-Erling Smørgrav2001-10-041-5/+8
* More style(9) fixes: no spaces between function name and parameter list;Dag-Erling Smørgrav2001-10-041-30/+30
* This file had a mixture of "return foo;" and "return (foo);"; standardizeDag-Erling Smørgrav2001-10-041-24/+24
* Set debug information on the process being traced, not the current (debugger)Mark Peek2001-09-181-2/+2
* KSE Milestone 2Julian Elischer2001-09-121-16/+17
* Zap 'ptrace(PT_READ_U, ...)' and 'ptrace(PT_WRITE_U, ...)' since theyPeter Wemm2001-08-081-43/+0
* o Replace calls to p_can(..., P_CAN_xxx) with calls to p_canxxx().Robert Watson2001-07-051-2/+2
* - FDESC, FIFO, NULL, PORTAL, PROC, UMAP and UNION fileRuslan Ermilov2001-05-231-1/+1
* Fix a bug in the pfind() changes due to confusing the process returned byJohn Baldwin2001-05-041-1/+6
* Undo part of the tangle of having sys/lock.h and sys/mutex.h included inMark Murray2001-05-011-2/+4
* Change the pfind() and zpfind() functions to lock the process that theyJohn Baldwin2001-04-241-10/+14
* Convert the allproc and proctree locks from lockmgr locks to sx locks.John Baldwin2001-03-281-6/+7
* - Proc locking.John Baldwin2001-03-071-17/+29
* Change and clean the mutex lock interface.Bosko Milekic2001-02-091-12/+12
* - Catch up to proc flag changes.John Baldwin2001-01-241-4/+18
* Backout rev 1.57 & 1.58. While the previous revisions fixedPaul Saab2000-12-311-1/+0
* Pass me the pointy hat. Do not hold sched_lock over psignal.Paul Saab2000-12-301-1/+1
* Send a SIGCONT when detaching or continuing the excution of a tracedPaul Saab2000-12-281-0/+1
* Protect proc.p_pptr and proc.p_children/p_sibling with theJake Burkholder2000-12-231-1/+11
* Change the proc information returned from the kernel so that itKirk McKusick2000-12-121-5/+3