| Commit message (Expand) | Author | Age | Files | Lines |
| * | /* -> /*- for copyright notices, minor format tweaks as necessary | Warner Losh | 2005-01-06 | 1 | -1/+1 |
| * | Add new function fdunshare() which encapsulates the necessary light magic | Poul-Henning Kamp | 2004-12-14 | 1 | -10/+1 |
| * | Don't include sys/user.h merely for its side-effect of recursively | David Schultz | 2004-11-27 | 1 | -1/+1 |
| * | Introduce an alias for FILEDESC_{UN}LOCK() with the suffix _FAST. | Poul-Henning Kamp | 2004-11-13 | 1 | -3/+3 |
| * | Use more intuitive pointer for fdinit() and fdcopy(). | Poul-Henning Kamp | 2004-11-08 | 1 | -1/+1 |
| * | Put on my peril sensitive sunglasses and add a flags field to the internal | Peter Wemm | 2004-10-11 | 1 | -4/+4 |
| * | Add an execve command for kse_thr_interrupt to allow libpthread to | David Xu | 2004-10-07 | 1 | -3/+2 |
| * | In original kern_execve() code, at the start of the function, it forces | David Xu | 2004-10-06 | 1 | -12/+46 |
| * | - Don't try to unlock Giant if single threading fails since we don't have | John Baldwin | 2004-09-23 | 1 | -1/+1 |
| * | Revert the last change.. | Julian Elischer | 2004-09-22 | 1 | -17/+11 |
| * | In a threaded process, don't kill off all the other threads until we have a | Julian Elischer | 2004-09-21 | 1 | -11/+17 |
| * | Refactor a bunch of scheduler code to give basically the same behaviour | Julian Elischer | 2004-09-05 | 1 | -6/+2 |
| * | Add locking to the kqueue subsystem. This also makes the kqueue subsystem | John-Mark Gurney | 2004-08-15 | 1 | -1/+1 |
| * | Rename suser_cred()'s PRISON_ROOT flag to SUSER_ALLOWJAIL. This is | Colin Percival | 2004-07-26 | 1 | -1/+1 |
| * | White space fix.. | Julian Elischer | 2004-07-24 | 1 | -3/+3 |
| * | Push down the acquisition and release of the page queues lock into | Alan Cox | 2004-07-13 | 1 | -2/+0 |
| * | Move TDF_SA from td_flags to td_pflags (and rename it accordingly) | Tim J. Robbins | 2004-06-02 | 1 | -3/+1 |
| * | Clear KSE thread flags after KSE thread mode is ended. The side effect | David Xu | 2004-05-21 | 1 | -0/+3 |
| * | Utilize sf_buf_alloc() rather than pmap_qenter() (and sometimes | Alan Cox | 2004-04-23 | 1 | -10/+12 |
| * | Use vm_page_hold() rather than vm_page_wire() for short-duration page | Alan Cox | 2004-04-11 | 1 | -2/+2 |
| * | Remove sysctl kern.ps_argsopen, it is not very useful, one should use | Pawel Jakub Dawidek | 2004-04-01 | 1 | -3/+0 |
| * | Make the process_exit eventhandler run without Giant. Add Giant hooks | Peter Wemm | 2004-03-14 | 1 | -0/+1 |
| * | Push Giant down a little further: | Peter Wemm | 2004-03-13 | 1 | -2/+0 |
| * | Do what the execve(2) manpage says and enforce what a Strictly | Ruslan Ermilov | 2004-03-12 | 1 | -1/+2 |
| * | Lock Giant around the single threading code in exec() to satisfy an | John Baldwin | 2004-03-05 | 1 | -0/+3 |
| * | Checkpoint a hack to enable running i386 libc_r binaries on a 64 bit | Peter Wemm | 2004-02-18 | 1 | -4/+22 |
| * | Fixed some style bugs (mainly, try to always use explicit comparisons with | Bruce Evans | 2003-12-28 | 1 | -8/+7 |
| * | Fixed some disordering in revs.1.194 and 1,196. Moved the exceve() syscall | Bruce Evans | 2003-12-28 | 1 | -55/+55 |
| * | Remove GIANT_REQUIRED from exec_unmap_first_page(). | Alan Cox | 2003-12-27 | 1 | -1/+0 |
| * | Modify the MAC Framework so that instead of embedding a (struct label) | Robert Watson | 2003-11-12 | 1 | -13/+11 |
| * | Remove md_bspstore from the MD fields of struct thread. Now that | Marcel Moolenaar | 2003-10-21 | 1 | -1/+0 |
| * | Put the RSE backing store at a fixed address. This change is triggered | Marcel Moolenaar | 2003-10-20 | 1 | -1/+1 |
| * | Eliminate some unnecessary uses of the vm page queues lock around the | Alan Cox | 2003-10-04 | 1 | -9/+6 |
| * | Remove the regstkpages sysctl variable. We have a growable register | Marcel Moolenaar | 2003-09-27 | 1 | -6/+0 |
| * | Part 2 of implementing rstacks: add the ability to create rstacks and | Marcel Moolenaar | 2003-09-27 | 1 | -15/+9 |
| * | Add sysentvec->sv_fixlimits() hook so that we can catch cases on 64 bit | Peter Wemm | 2003-09-25 | 1 | -0/+9 |
| * | Add a "int fd" argument to VOP_OPEN() which in the future will | Poul-Henning Kamp | 2003-07-26 | 1 | -1/+1 |
| * | Rename P_THREADED to P_SA. P_SA means a process is using scheduler | David Xu | 2003-06-15 | 1 | -2/+2 |
| * | Add vm object locking to various pagers' "get pages" methods, i386 stack | Alan Cox | 2003-06-13 | 1 | -2/+0 |
| * | Use __FBSDID(). | David E. O'Brien | 2003-06-11 | 1 | -2/+3 |
| * | Update the vm object and page locking in exec_map_first_page(). Mark the | Alan Cox | 2003-06-09 | 1 | -9/+15 |
| * | Lock the vm object when performing vm_page_grab(). | Alan Cox | 2003-06-08 | 1 | -2/+2 |
| * | - Merge struct procsig with struct sigacts. | John Baldwin | 2003-05-13 | 1 | -15/+10 |
| * | - Borrow the KSE single threading code for exec and exit. We use the check | Jeff Roberson | 2003-04-01 | 1 | -1/+1 |
| * | Replace the at_fork, at_exec, and at_exit functions with the slightly more | John Baldwin | 2003-03-24 | 1 | -59/+2 |
| * | - Cache a reference to the credential of the thread that starts a ktrace in | John Baldwin | 2003-03-13 | 1 | -3/+8 |
| * | 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 | -3/+3 |
| * | - Split the struct kse into struct upcall and struct kse. struct kse will | Jeff Roberson | 2003-02-17 | 1 | -3/+0 |
| * | Reversion of commit by Davidxu plus fixes since applied. | Julian Elischer | 2003-02-01 | 1 | -0/+3 |