| Commit message (Expand) | Author | Age | Files | Lines |
* | Since we no longer inline any debugging code in the mutex operations, move | jhb | 2001-09-22 | 2 | -8/+48 |
* | o vpaccess() -> vn_access() -- Peter reminds me that there is already | rwatson | 2001-09-22 | 2 | -8/+8 |
* | Use the passed in thread to selrecord() instead of curthread. | jhb | 2001-09-21 | 4 | -6/+6 |
* | Use the passed in thread pointer instead of curthread in calls to | jhb | 2001-09-21 | 1 | -2/+2 |
* | The P_SELECT flag was moved from p->p_flag to td->td_flags, but p_flag | jhb | 2001-09-21 | 1 | -2/+20 |
* | Remove unneeded proc variables and fix comments. | jhb | 2001-09-21 | 1 | -11/+6 |
* | o Part two of eaccess(2) commit, rebuilt system call code. | rwatson | 2001-09-21 | 2 | -2/+4 |
* | o Introduce eaccess(2), a version of access(2) that uses the effective | rwatson | 2001-09-21 | 3 | -28/+135 |
* | Remove a bogus comment. "atomic" doesn't mean that the operation is done | jhb | 2001-09-21 | 1 | -1/+0 |
* | GC some #if 0'd code. | jhb | 2001-09-21 | 1 | -8/+2 |
* | Whitespace and spelling fixes. | jhb | 2001-09-21 | 1 | -2/+2 |
* | Make msgseg, msgssz (->msgmax) and msgmni TUNABLE. | mr | 2001-09-21 | 1 | -0/+5 |
* | Add a pointer to kenv(1). | peter | 2001-09-21 | 1 | -0/+3 |
* | Revert last commit. The same functionality can be obtained through the | jlemon | 2001-09-21 | 1 | -26/+27 |
* | o Rename u_cansee() to cr_cansee(), making the name more comprehensible | rwatson | 2001-09-20 | 1 | -3/+3 |
* | Add a sysctl MIB 'kern.env', that dumps the contents of the kernel | jlemon | 2001-09-20 | 1 | -27/+26 |
* | decrement the dumping variable after use so we can call it several times | peter | 2001-09-20 | 1 | -4/+6 |
* | Fix a bug in propagate priority: the kse group pointer wasn't being | jhb | 2001-09-19 | 2 | -0/+2 |
* | o Clarification of securelevel_{ge,gt} comment. | rwatson | 2001-09-19 | 1 | -2/+2 |
* | Add missing ; in last commit | peter | 2001-09-19 | 1 | -1/+1 |
* | Regenerate | peter | 2001-09-18 | 2 | -2/+4 |
* | Cleanup and split of nfs client and server code. | peter | 2001-09-18 | 1 | -0/+1 |
* | Use a 'p' variable instead of repetitively indirecting td->td_proc for | jhb | 2001-09-18 | 1 | -17/+20 |
* | Don't initialize proc0's mutex twice. It is already done earlier on in the | jhb | 2001-09-18 | 1 | -1/+0 |
* | o Introduce two new calls, securelevel_gt() and securelevel_ge(), which | rwatson | 2001-09-18 | 1 | -3/+57 |
* | Set debug information on the process being traced, not the current (debugger) | mp | 2001-09-18 | 1 | -2/+2 |
* | Change p into ke->ke_proc, this was hidden behind INVARIANTS. | jlemon | 2001-09-18 | 1 | -1/+1 |
* | Fix a fatal type mismatch (char *static_env; vs char static_env[]). | peter | 2001-09-17 | 1 | -2/+0 |
* | Replace line accidentally deleted during KSE additions. | julian | 2001-09-17 | 1 | -1/+1 |
* | o Correct authorization check in CANSIGIO(), which suffered from incorrect | rwatson | 2001-09-15 | 1 | -4/+5 |
* | In the devfs case, have initproc attempt the easy cases of mounting /dev. | peter | 2001-09-15 | 1 | -1/+17 |
* | The ia64 kernel is now linked dynamically so parse its _DYNAMIC structure. | dfr | 2001-09-15 | 2 | -8/+0 |
* | Fix locking on td_flags for TDF_DEADLKTREAT. If the comments in the code | jhb | 2001-09-13 | 2 | -9/+10 |
* | PR: kern/29698 (part) | mr | 2001-09-13 | 1 | -0/+19 |
* | PR: kern/29698 (part) | mr | 2001-09-13 | 2 | -0/+18 |
* | If an incoming struct proc could have been NULL before, tehn don't | julian | 2001-09-12 | 1 | -4/+5 |
* | KSE Milestone 2 | julian | 2001-09-12 | 90 | -3613/+4173 |
* | Fix the kern.module_path issue that required the trailing '/' character | peter | 2001-09-12 | 1 | -12/+15 |
* | Correct a debugging message. | dd | 2001-09-11 | 1 | -1/+1 |
* | Implement the long-awaited module->file cache database. A userland | peter | 2001-09-11 | 1 | -87/+299 |
* | - Axe holding_giant as it is not used now anyways and was ok'd by | jhb | 2001-09-10 | 1 | -35/+4 |
* | Fix a warning on alpha (real problem) and make pstat -t work as a bonus. | peter | 2001-09-10 | 1 | -1/+1 |
* | Make the `nsops' variable in `semop' unsigned. This prevents an | dd | 2001-09-10 | 1 | -5/+5 |
* | Fix some signed/unsigned integer confusion, and add bounds checking of | kris | 2001-09-10 | 1 | -0/+5 |
* | Fix a warning. l_name is managed by us and is malloc/free'ed. | peter | 2001-09-10 | 2 | -2/+2 |
* | Add on UPAGES to ki_rssize since it is there as result of the process | peter | 2001-09-10 | 1 | -0/+2 |
* | Rip some well duplicated code out of cpu_wait() and cpu_exit() and move | peter | 2001-09-10 | 2 | -11/+30 |
* | This brings in a Yahoo coredump patch from Paul, with additional mods by | dillon | 2001-09-08 | 4 | -12/+67 |
* | Call sendsig() with the proc lock held and return with it held. | jhb | 2001-09-06 | 1 | -4/+0 |
* | Sigh. Dig up text from a signature in a 1994 Usenet post I made and redo | peter | 2001-09-05 | 1 | -5/+12 |