| Commit message (Expand) | Author | Age | Files | Lines |
| * | Change the process flags P_KSES to be P_THREADED. | Julian Elischer | 2003-02-27 | 1 | -2/+2 |
| * | Back out M_* changes, per decision of the TRB. | Warner Losh | 2003-02-19 | 1 | -1/+1 |
| * | Remove M_TRYWAIT/M_WAITOK/M_WAIT. Callers should use 0. | Alfred Perlstein | 2003-01-21 | 1 | -1/+1 |
| * | Remove unnecessary lock assertion. | Jeffrey Hsu | 2003-01-04 | 1 | -15/+1 |
| * | Fix typos, mostly s/ an / a / where appropriate and a few s/an/and/ | Jens Schweikhardt | 2002-12-30 | 1 | -1/+1 |
| * | - Add the new sched_pctcpu() function to the sched_* api. | Jeff Roberson | 2002-11-21 | 1 | -1/+1 |
| * | - Implement a mechanism for allowing schedulers to place scheduler dependant | Jeff Roberson | 2002-11-21 | 1 | -9/+3 |
| * | Move thread related code from kern_proc.c to kern_thread.c. | Julian Elischer | 2002-10-24 | 1 | -258/+0 |
| * | detect idle kse correctly. | David Xu | 2002-10-22 | 1 | -1/+1 |
| * | Add an actual implementation of kse_wakeup() | Julian Elischer | 2002-10-20 | 1 | -1/+41 |
| * | Use strlcpy() instead of strncpy() to copy NUL terminated strings | Robert Drehmel | 2002-10-17 | 1 | -8/+8 |
| * | - Add a new global mutex 'ppeers_lock' to protect the p_peers list of | John Baldwin | 2002-10-15 | 1 | -0/+2 |
| * | Round out the facilty for a 'bound' thread to loan out its KSE | Julian Elischer | 2002-10-09 | 1 | -19/+14 |
| * | Rename the mutex thread and process states to use a more generic 'LOCK' | John Baldwin | 2002-10-02 | 1 | -6/+6 |
| * | Let kse_wakeup() take a KSE mailbox pointer argument. | Archie Cobbs | 2002-10-02 | 1 | -0/+3 |
| * | Some kernel threads try to do significant work, and the default KSTACK_PAGES | Scott Long | 2002-10-02 | 1 | -0/+9 |
| * | Back our kernel support for reliable signal queues. | Juli Mallett | 2002-10-01 | 1 | -3/+2 |
| * | First half of implementation of ksiginfo, signal queues, and such. This | Juli Mallett | 2002-09-30 | 1 | -2/+3 |
| * | Implement basic KSE loaning. This stops a hread that is blocked in BOUND mode | Julian Elischer | 2002-09-29 | 1 | -1/+3 |
| * | Rewrite the kse_create() function to better aproach the semantics we | Julian Elischer | 2002-09-28 | 1 | -56/+71 |
| * | Make the following name changes to KSE related functions, etc., to better | Archie Cobbs | 2002-09-25 | 1 | -9/+10 |
| * | oops don't do dthe copy range in a new KSE. There isn't one any more. | Julian Elischer | 2002-09-23 | 1 | -0/+2 |
| * | Add code to create > 1 KSe per process. | Julian Elischer | 2002-09-23 | 1 | -16/+39 |
| * | Add kernel support needed for the KSE-aware libpthread: | Jonathan Mini | 2002-09-16 | 1 | -5/+22 |
| * | Allocate KSEs and KSEGRPs separatly and remove them from the proc structure. | Julian Elischer | 2002-09-15 | 1 | -40/+44 |
| * | Completely redo thread states. | Julian Elischer | 2002-09-11 | 1 | -5/+5 |
| * | Make UAREA_PAGES and KSTACK_PAGES visible to userland via sysctl, like | Peter Wemm | 2002-09-07 | 1 | -0/+6 |
| * | Minor spelling tweak: assume "his" is actually "This". | Robert Watson | 2002-09-06 | 1 | -1/+1 |
| * | Use UMA as a complex object allocator. | Julian Elischer | 2002-09-06 | 1 | -17/+31 |
| * | Fix typos; each file has at least one s/seperat/separat/ | Jens Schweikhardt | 2002-08-11 | 1 | -5/+5 |
| * | Wire the sysctl output buffer before grabbing any locks to prevent | Don Lewis | 2002-07-28 | 1 | -0/+1 |
| * | Thinking about it I came to the conclusion that the KSE states were incorrectly | Julian Elischer | 2002-07-14 | 1 | -2/+0 |
| * | Collect all the (now equivalent) pmap_new_proc/pmap_dispose_proc/ | Peter Wemm | 2002-07-07 | 1 | -2/+103 |
| * | If the process is a zombie, then you must not try dereference the thread | Julian Elischer | 2002-06-30 | 1 | -53/+55 |
| * | Part 1 of KSE-III | Julian Elischer | 2002-06-29 | 1 | -73/+144 |
| * | Always drop the p_args reference we held for copyout, even if we're about | Jonathan Mini | 2002-06-22 | 1 | -3/+2 |
| * | Properly lock accesses to p_tracep and p_traceflag. Also make a few | John Baldwin | 2002-06-07 | 1 | -2/+12 |
| * | Change p_can{debug,see,sched,signal}()'s first argument to be a thread | John Baldwin | 2002-05-19 | 1 | -3/+3 |
| * | Make funsetown() take a 'struct sigio **' so that the locking can | Alfred Perlstein | 2002-05-06 | 1 | -4/+1 |
| * | As malloc(9) and free(9) are now Giant-free, remove the Giant lock | Seigo Tanimura | 2002-05-03 | 1 | -5/+1 |
| * | Fix the lock order reversal between the sigio lock and a process/pgrp lock in | Seigo Tanimura | 2002-05-03 | 1 | -0/+2 |
| * | Free(9) should be Giant-free. | Seigo Tanimura | 2002-04-24 | 1 | -1/+1 |
| * | Push down Giant for setpgid(), setsid() and aio_daemon(). Giant protects only | Seigo Tanimura | 2002-04-20 | 1 | -1/+5 |
| * | - Merge the pgrpsess_lock and proctree_lock sx locks into one proctree_lock | John Baldwin | 2002-04-16 | 1 | -14/+10 |
| * | - Change fill_kinfo_proc() to require that the process is locked when it | John Baldwin | 2002-04-09 | 1 | -14/+20 |
| * | Use CTASSERT rather than a runtime check to detect kinfo_proc size changes. | Jake Burkholder | 2002-04-06 | 1 | -16/+2 |
| * | Change callers of mtx_init() to pass in an appropriate lock type name. In | John Baldwin | 2002-04-04 | 1 | -3/+3 |
| * | Stage-2 commit of the critical*() code. This re-inlines cpu_critical_enter() | Matthew Dillon | 2002-04-01 | 1 | -0/+1 |
| * | Close some holes with p->p_args by NULL'ing out the p->p_args pointer | Alfred Perlstein | 2002-03-31 | 1 | -3/+10 |
| * | To remove nested include of sys/lock.h and sys/mutex.h from sys/proc.h | Alfred Perlstein | 2002-03-28 | 1 | -0/+44 |