| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | If the process is a zombie, then you must not try dereference the thread | julian | 2002-06-30 | 1 | -53/+55 |
* | Part 1 of KSE-III | julian | 2002-06-29 | 1 | -73/+144 |
* | Always drop the p_args reference we held for copyout, even if we're about | mini | 2002-06-22 | 1 | -3/+2 |
* | Properly lock accesses to p_tracep and p_traceflag. Also make a few | jhb | 2002-06-07 | 1 | -2/+12 |
* | Change p_can{debug,see,sched,signal}()'s first argument to be a thread | jhb | 2002-05-19 | 1 | -3/+3 |
* | Make funsetown() take a 'struct sigio **' so that the locking can | alfred | 2002-05-06 | 1 | -4/+1 |
* | As malloc(9) and free(9) are now Giant-free, remove the Giant lock | tanimura | 2002-05-03 | 1 | -5/+1 |
* | Fix the lock order reversal between the sigio lock and a process/pgrp lock in | tanimura | 2002-05-03 | 1 | -0/+2 |
* | Free(9) should be Giant-free. | tanimura | 2002-04-24 | 1 | -1/+1 |
* | Push down Giant for setpgid(), setsid() and aio_daemon(). Giant protects only | tanimura | 2002-04-20 | 1 | -1/+5 |
* | - Merge the pgrpsess_lock and proctree_lock sx locks into one proctree_lock | jhb | 2002-04-16 | 1 | -14/+10 |
* | - Change fill_kinfo_proc() to require that the process is locked when it | jhb | 2002-04-09 | 1 | -14/+20 |
* | Use CTASSERT rather than a runtime check to detect kinfo_proc size changes. | jake | 2002-04-06 | 1 | -16/+2 |
* | Change callers of mtx_init() to pass in an appropriate lock type name. In | jhb | 2002-04-04 | 1 | -3/+3 |
* | Stage-2 commit of the critical*() code. This re-inlines cpu_critical_enter() | dillon | 2002-04-01 | 1 | -0/+1 |
* | Close some holes with p->p_args by NULL'ing out the p->p_args pointer | alfred | 2002-03-31 | 1 | -3/+10 |
* | To remove nested include of sys/lock.h and sys/mutex.h from sys/proc.h | alfred | 2002-03-28 | 1 | -0/+44 |
* | Make the reference counting of 'struct pargs' SMP safe. | alfred | 2002-03-27 | 1 | -7/+5 |
* | Add a new mtx_init option "MTX_DUPOK" which allows duplicate acquires of locks | jeff | 2002-03-27 | 1 | -1/+1 |
* | oops, forgot to commit this. td->td_savecrit = 0 replaced by API | dillon | 2002-03-27 | 1 | -0/+1 |
* | Make this compile. | jake | 2002-03-27 | 1 | -1/+0 |
* | Fixed some style bugs in the removal of __P(()). The main ones were | bde | 2002-03-24 | 1 | -4/+4 |
* | Remove references to vm_zone.h and switch over to the new uma API. | jeff | 2002-03-20 | 1 | -4/+5 |
* | Remove __P. | alfred | 2002-03-19 | 1 | -4/+4 |
* | Lock struct pgrp, session and sigio. | tanimura | 2002-02-23 | 1 | -79/+211 |
* | Convert p->p_runtime and PCPU(switchtime) to bintime format. | phk | 2002-02-22 | 1 | -1/+3 |
* | Oops, used wrong error value for unimplemented syscalls. | julian | 2002-02-20 | 1 | -6/+6 |
* | Add stub syscalls and definitions for KSE calls. | julian | 2002-02-19 | 1 | -0/+45 |
* | The previous commit included a change to fill_kinfo_proc() that results | alc | 2002-02-12 | 1 | -1/+1 |
* | In a threaded world, differnt priorirites become properties of | julian | 2002-02-11 | 1 | -5/+7 |
* | Fix a fatal trap when using ksched_setscheduler() (eg: mozilla, netscape | peter | 2002-02-08 | 1 | -1/+1 |
* | remove superfluous blank line | julian | 2002-02-08 | 1 | -1/+0 |
* | Fix a couple of style bugs introduced (or touched by) previous commit. | peter | 2002-02-07 | 1 | -0/+2 |
* | Pre-KSE/M3 commit. | julian | 2002-02-07 | 1 | -60/+80 |
* | Fix a bug where the mutex name wasn't always displayed for processes in | jhb | 2002-01-05 | 1 | -1/+1 |
* | As a followup to the previous fixes to inferior, revert some of the | jhb | 2001-11-13 | 1 | -6/+3 |
* | Clean up breakage in inferior() I introduced in 1.92 of kern_proc.c: | jhb | 2001-11-12 | 1 | -9/+7 |
* | - Combine kern.ps_showallprocs and kern.ipc.showallsockets into | rwatson | 2001-10-09 | 1 | -4/+0 |
* | KSE Milestone 2 | julian | 2001-09-12 | 1 | -15/+89 |
* | Add on UPAGES to ki_rssize since it is there as result of the process | peter | 2001-09-10 | 1 | -0/+2 |
* | Fix part of another problem that bde pointed out. This is different | peter | 2001-08-16 | 1 | -2/+3 |
* | Remove redundant null-termination. The buffer is already explicitly | peter | 2001-08-16 | 1 | -8/+1 |
* | Use the backwards compatability mechanisms so that ps/top etc dont have | peter | 2001-08-16 | 1 | -9/+15 |
* | o Replace calls to p_can(..., P_CAN_xxx) with calls to p_canxxx(). | rwatson | 2001-07-05 | 1 | -4/+4 |
* | Fix some lock order reversals where we called free() while holding a proc | jhb | 2001-06-20 | 1 | -2/+3 |
* | o Merge contents of struct pcred into struct ucred. Specifically, add the | rwatson | 2001-05-25 | 1 | -9/+9 |
* | Undo part of the tangle of having sys/lock.h and sys/mutex.h included in | markm | 2001-05-01 | 1 | -4/+6 |
* | Change the pfind() and zpfind() functions to lock the process that they | jhb | 2001-04-24 | 1 | -16/+42 |
* | Convert the allproc and proctree locks from lockmgr locks to sx locks. | jhb | 2001-03-28 | 1 | -15/+16 |
* | Don't leak the memory we've just malloced if we can't find the | dwmalone | 2001-03-27 | 1 | -2/+2 |