| Commit message (Expand) | Author | Age | Files | Lines |
* | - Merge struct procsig with struct sigacts. | jhb | 2003-05-13 | 1 | -3/+7 |
* | Initialize and destroy the struct proc mutex in the proc zone's init and | jhb | 2003-05-01 | 1 | -0/+3 |
* | Instead of recording the Unix time in a process when it starts, record the | des | 2003-05-01 | 1 | -2/+1 |
* | Include altkstack pages in the RSS regardless of whether the process | tjr | 2003-04-25 | 1 | -8/+6 |
* | It seems that 1 was not a magic value as I thought, but a coincidence. | des | 2003-04-24 | 1 | -2/+2 |
* | Do a better job of calculating the RSS for swapped-out processes: | tjr | 2003-04-24 | 1 | -3/+9 |
* | When filling out a kinfo_proc structure, if we come across a process | des | 2003-04-24 | 1 | -0/+2 |
* | - Add a static function pgadjustjobc() to adjust the job control count for | jhb | 2003-04-18 | 1 | -36/+42 |
* | Move the _oncpu entry from the KSE to the thread. | julian | 2003-04-10 | 1 | -1/+1 |
* | - Move p->p_sigmask to td->td_sigmask. Signal masks will be per thread with | jeff | 2003-03-31 | 1 | -3/+6 |
* | - Cache a reference to the credential of the thread that starts a ktrace in | jhb | 2003-03-13 | 1 | -1/+1 |
* | - Various little style fixes. | jhb | 2003-03-12 | 1 | -8/+5 |
* | - Avoid dropping the proc lock around a simple permissions check and just | jhb | 2003-03-12 | 1 | -18/+16 |
* | Change the process flags P_KSES to be P_THREADED. | julian | 2003-02-27 | 1 | -2/+2 |
* | Back out M_* changes, per decision of the TRB. | imp | 2003-02-19 | 1 | -1/+1 |
* | Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0. | alfred | 2003-01-21 | 1 | -1/+1 |
* | Remove unnecessary lock assertion. | hsu | 2003-01-04 | 1 | -15/+1 |
* | Fix typos, mostly s/ an / a / where appropriate and a few s/an/and/ | schweikh | 2002-12-30 | 1 | -1/+1 |
* | - Add the new sched_pctcpu() function to the sched_* api. | jeff | 2002-11-21 | 1 | -1/+1 |
* | - Implement a mechanism for allowing schedulers to place scheduler dependant | jeff | 2002-11-21 | 1 | -9/+3 |
* | Move thread related code from kern_proc.c to kern_thread.c. | julian | 2002-10-24 | 1 | -258/+0 |
* | detect idle kse correctly. | davidxu | 2002-10-22 | 1 | -1/+1 |
* | Add an actual implementation of kse_wakeup() | julian | 2002-10-20 | 1 | -1/+41 |
* | Use strlcpy() instead of strncpy() to copy NUL terminated strings | robert | 2002-10-17 | 1 | -8/+8 |
* | - Add a new global mutex 'ppeers_lock' to protect the p_peers list of | jhb | 2002-10-15 | 1 | -0/+2 |
* | Round out the facilty for a 'bound' thread to loan out its KSE | julian | 2002-10-09 | 1 | -19/+14 |
* | Rename the mutex thread and process states to use a more generic 'LOCK' | jhb | 2002-10-02 | 1 | -6/+6 |
* | Let kse_wakeup() take a KSE mailbox pointer argument. | archie | 2002-10-02 | 1 | -0/+3 |
* | Some kernel threads try to do significant work, and the default KSTACK_PAGES | scottl | 2002-10-02 | 1 | -0/+9 |
* | Back our kernel support for reliable signal queues. | jmallett | 2002-10-01 | 1 | -3/+2 |
* | First half of implementation of ksiginfo, signal queues, and such. This | jmallett | 2002-09-30 | 1 | -2/+3 |
* | Implement basic KSE loaning. This stops a hread that is blocked in BOUND mode | julian | 2002-09-29 | 1 | -1/+3 |
* | Rewrite the kse_create() function to better aproach the semantics we | julian | 2002-09-28 | 1 | -56/+71 |
* | Make the following name changes to KSE related functions, etc., to better | archie | 2002-09-25 | 1 | -9/+10 |
* | oops don't do dthe copy range in a new KSE. There isn't one any more. | julian | 2002-09-23 | 1 | -0/+2 |
* | Add code to create > 1 KSe per process. | julian | 2002-09-23 | 1 | -16/+39 |
* | Add kernel support needed for the KSE-aware libpthread: | mini | 2002-09-16 | 1 | -5/+22 |
* | Allocate KSEs and KSEGRPs separatly and remove them from the proc structure. | julian | 2002-09-15 | 1 | -40/+44 |
* | Completely redo thread states. | julian | 2002-09-11 | 1 | -5/+5 |
* | Make UAREA_PAGES and KSTACK_PAGES visible to userland via sysctl, like | peter | 2002-09-07 | 1 | -0/+6 |
* | Minor spelling tweak: assume "his" is actually "This". | rwatson | 2002-09-06 | 1 | -1/+1 |
* | Use UMA as a complex object allocator. | julian | 2002-09-06 | 1 | -17/+31 |
* | Fix typos; each file has at least one s/seperat/separat/ | schweikh | 2002-08-11 | 1 | -5/+5 |
* | Wire the sysctl output buffer before grabbing any locks to prevent | truckman | 2002-07-28 | 1 | -0/+1 |
* | Thinking about it I came to the conclusion that the KSE states were incorrectly | julian | 2002-07-14 | 1 | -2/+0 |
* | Collect all the (now equivalent) pmap_new_proc/pmap_dispose_proc/ | peter | 2002-07-07 | 1 | -2/+103 |
* | 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 |