| Commit message (Expand) | Author | Age | Files | Lines |
* | When reparenting a process in the PT_DETACH code, only set p_sigparent | truckman | 2004-02-19 | 1 | -1/+2 |
* | When reparenting a process to init, make sure that p_sigparent is | truckman | 2004-02-11 | 1 | -0/+1 |
* | Implement preliminary support for the PT_SYSCALL command to ptrace(2). | robert | 2003-10-09 | 1 | -1/+16 |
* | Add or finish support for machine dependent ptrace requests. When we | marcel | 2003-08-15 | 1 | -22/+13 |
* | Add or correct range checking of signal numbers in system calls and | nectar | 2003-08-10 | 1 | -2/+2 |
* | Background: When proc_rwmem() wired and mapped a page, it also added | alc | 2003-08-09 | 1 | -30/+5 |
* | Use kmem_alloc_nofault() rather than kmem_alloc_pageable() in proc_rwmem(). | alc | 2003-08-02 | 1 | -1/+1 |
* | Add vm object locking. | alc | 2003-06-11 | 1 | -12/+12 |
* | Use __FBSDID(). | obrien | 2003-06-11 | 1 | -2/+3 |
* | Push down Giant around calls to proc_rwmem() in kern_ptrace. kern_ptrace() | jhb | 2003-04-25 | 1 | -0/+7 |
* | Prefer the proc lock to sched_lock when testing PS_INMEM now that it is | jhb | 2003-04-22 | 1 | -2/+1 |
* | The sched_lock is not needed while clearing two of the P_STOPPED bits in | jhb | 2003-04-17 | 1 | -3/+2 |
* | Whitespace cleanup. | des | 2003-03-19 | 1 | -5/+5 |
* | Add a missing PROC_UNLOCK in ptrace() for the PT_IO case. | jhb | 2002-10-16 | 1 | -0/+1 |
* | Completely redo thread states. | julian | 2002-09-11 | 1 | -0/+1 |
* | Remove bogus fill_kinfo_proc() before ptrace_set_pc(). There was no need | peter | 2002-09-07 | 1 | -1/+0 |
* | s/SGNL/SIG/ | davidxu | 2002-09-05 | 1 | -1/+1 |
* | Split up ptrace() into a wrapper that does the copying to and from | iedowse | 2002-09-05 | 1 | -68/+88 |
* | Replace various spelling with FALLTHROUGH which is lint()able | charnier | 2002-08-25 | 1 | -1/+1 |
* | Do preserve the error result from calling p_cansee() and use that when | rwatson | 2002-07-20 | 1 | -3/+1 |
* | Lock accesses to the page queues. | alc | 2002-07-12 | 1 | -0/+4 |
* | Fix ptrace(PT_READ_*, ...) for non-little-endian architectures where | tmm | 2002-07-12 | 1 | -3/+5 |
* | Part 1 of KSE-III | julian | 2002-06-29 | 1 | -2/+4 |
* | All signals can be sent to the inferior process when it's restarted, | marcel | 2002-05-19 | 1 | -1/+1 |
* | Change p_can{debug,see,sched,signal}()'s first argument to be a thread | jhb | 2002-05-19 | 1 | -2/+2 |
* | Remove trace_req(). | mini | 2002-05-09 | 1 | -7/+0 |
* | GCC 3.x WARNS: Add a break to the default case. | marcel | 2002-04-20 | 1 | -0/+1 |
* | Don't allow one to trace an ancestor when already traced. | alfred | 2002-04-14 | 1 | -1/+14 |
* | Rework ptrace(2) to be more locking friendly. We do any needed copyin()'s | jhb | 2002-04-12 | 1 | -86/+114 |
* | - Change fill_kinfo_proc() to require that the process is locked when it | jhb | 2002-04-09 | 1 | -0/+2 |
* | Convert all pmap_kenter/pmap_kremove pairs in MI code to use pmap_qenter/ | jake | 2002-03-17 | 1 | -2/+2 |
* | Implement PT_IO (read / write arbitrary amounts of data or text). | des | 2002-03-16 | 1 | -0/+31 |
* | PT_[GS]ET{,DB,FP}REGS isn't really optional any more, since we have dummy | des | 2002-03-15 | 1 | -25/+1 |
* | Back out all the pmap related stuff I've touched over the last few days. | peter | 2002-02-27 | 1 | -2/+2 |
* | Jake further reduced IPI shootdowns on sparc64 in loops by using ranged | peter | 2002-02-27 | 1 | -2/+2 |
* | Lock struct pgrp, session and sigio. | tanimura | 2002-02-23 | 1 | -3/+3 |
* | Fixed some style bugs. Added a comment about a bug in PT_SSTEP. | bde | 2002-02-21 | 1 | -25/+21 |
* | Recover bits that were lost in transition in rev.1.76: | bde | 2002-02-21 | 1 | -16/+77 |
* | Bah, I managed to turn cosmetic things into real bugs. Fix shadowed | peter | 2002-02-08 | 1 | -12/+12 |
* | Fix a whole bunch of long lines introduced by previous commit by using | peter | 2002-02-07 | 1 | -11/+15 |
* | Pre-KSE/M3 commit. | julian | 2002-02-07 | 1 | -10/+10 |
* | Move procfs_* from procfs_machdep.c into sys_process.c, and rename them to | des | 2001-10-21 | 1 | -6/+36 |
* | Dissociate ptrace from procfs. | des | 2001-10-07 | 1 | -186/+205 |
* | Final style(9) commit: placement of opening brace; a continuation indent I | des | 2001-10-04 | 1 | -5/+8 |
* | More style(9) fixes: no spaces between function name and parameter list; | des | 2001-10-04 | 1 | -30/+30 |
* | This file had a mixture of "return foo;" and "return (foo);"; standardize | des | 2001-10-04 | 1 | -24/+24 |
* | Set debug information on the process being traced, not the current (debugger) | mp | 2001-09-18 | 1 | -2/+2 |
* | KSE Milestone 2 | julian | 2001-09-12 | 1 | -16/+17 |
* | Zap 'ptrace(PT_READ_U, ...)' and 'ptrace(PT_WRITE_U, ...)' since they | peter | 2001-08-08 | 1 | -43/+0 |
* | o Replace calls to p_can(..., P_CAN_xxx) with calls to p_canxxx(). | rwatson | 2001-07-05 | 1 | -2/+2 |