| Commit message (Expand) | Author | Age | Files | Lines |
| * | This brings in a Yahoo coredump patch from Paul, with additional mods by | Matthew Dillon | 2001-09-08 | 1 | -4/+4 |
| * | Round of cleanups and enhancements. These include (in random order): | Marcel Moolenaar | 2001-09-08 | 11 | -1330/+1736 |
| * | Wrap array accesses in macros, which also happen to be lvalues: | Jonathan Lemon | 2001-09-06 | 1 | -1/+1 |
| * | Synchronize syscalls.master(s) with recent Giant pushdown work | Matthew Dillon | 2001-09-01 | 1 | -8/+8 |
| * | Speculatively add this file. It's part of the Linuxulator update | Marcel Moolenaar | 2001-09-01 | 1 | -0/+285 |
| * | Fix linux_getcwd() so that if the cwd isn't cached (__getcwd() fails), | Andrew Gallatin | 2001-08-29 | 2 | -28/+466 |
| * | Added the linux_sysinfo function to implement sysinfo(2). | Jim Pirzyk | 2001-07-23 | 1 | -0/+76 |
| * | get rid of some printf and pointer type warnings | Assar Westerlund | 2001-07-22 | 7 | -15/+17 |
| * | o Replace calls to p_can(..., P_CAN_xxx) with calls to p_canxxx(). | Robert Watson | 2001-07-05 | 1 | -1/+1 |
| * | Bah, back out part of previous commit. I got too carried away. | Peter Wemm | 2001-06-15 | 1 | -1/+1 |
| * | Fix warnings: | Peter Wemm | 2001-06-15 | 1 | -5/+5 |
| * | Fix warning: | Peter Wemm | 2001-06-15 | 1 | -2/+2 |
| * | Fix warning: | Peter Wemm | 2001-06-15 | 1 | -1/+1 |
| * | With this commit, I hereby pronounce gensetdefs past its use-by date. | Peter Wemm | 2001-06-13 | 1 | -34/+0 |
| * | Say one thing, do the other... nextpid -> lastpid | Dag-Erling Smørgrav | 2001-06-11 | 1 | -1/+1 |
| * | Implement proc/cpuinfo for the Alpha (thanks to gallatin). | Dag-Erling Smørgrav | 2001-06-11 | 1 | -10/+160 |
| * | Minor whitespace changes. | Dag-Erling Smørgrav | 2001-06-11 | 1 | -57/+57 |
| * | These aren't needed any more. | Dag-Erling Smørgrav | 2001-06-10 | 5 | -2163/+0 |
| * | New pseudofs-based linprocfs (repo-copied from linprocfs_misc.c). | Dag-Erling Smørgrav | 2001-06-10 | 1 | -210/+142 |
| * | S_IFCHR is not a bit mask, it's just a value in a field. The correct | Paul Richards | 2001-06-04 | 1 | -1/+1 |
| * | Remove vestiges of MFS. | Ruslan Ermilov | 2001-06-01 | 1 | -1/+1 |
| * | Remove MFS | Poul-Henning Kamp | 2001-05-29 | 1 | -2/+0 |
| * | - sys/n[tw]fs moved to sys/fs/n[tw]fs | Ruslan Ermilov | 2001-05-26 | 1 | -1/+1 |
| * | o Merge contents of struct pcred into struct ucred. Specifically, add the | Robert Watson | 2001-05-25 | 6 | -34/+31 |
| * | Sort includes. | John Baldwin | 2001-05-21 | 1 | -1/+1 |
| * | Add new 'loadavg' entry, fix overflow with meminfo. | Jonathan Lemon | 2001-05-19 | 4 | -16/+84 |
| * | Introduce a global lock for the vm subsystem (vm_mtx). | Alfred Perlstein | 2001-05-19 | 3 | -0/+3 |
| * | Avoid overflow when converting ticks to jiffies. | Dag-Erling Smørgrav | 2001-05-09 | 2 | -2/+2 |
| * | Fix the problem of some directory entries going missing when | Jonathan Lemon | 2001-05-04 | 1 | -2/+1 |
| * | Undo part of the tangle of having sys/lock.h and sys/mutex.h included in | Mark Murray | 2001-05-01 | 14 | -65/+87 |
| * | Add a vop_stdbmap(), and make it part of the default vop vector. | Poul-Henning Kamp | 2001-04-29 | 1 | -32/+0 |
| * | A bogus check for a char device also matched symbolic links. | Paul Richards | 2001-04-25 | 1 | -1/+1 |
| * | o Change a suser() call to a suser_xxx(..., PRISON_ROOT) call in the | Robert Watson | 2001-04-24 | 1 | -1/+1 |
| * | Change the pfind() and zpfind() functions to lock the process that they | John Baldwin | 2001-04-24 | 7 | -36/+39 |
| * | Add linux_sched_get_priority_max() and linux_sched_get_priority_min(): The | Alan Cox | 2001-04-01 | 1 | -0/+56 |
| * | Add missing includes of <sys/sx.h> | John Baldwin | 2001-03-28 | 2 | -0/+2 |
| * | Convert the allproc and proctree locks from lockmgr locks to sx locks. | John Baldwin | 2001-03-28 | 2 | -11/+11 |
| * | fix linux_times() to take into account linux's value of CLK_TCK on the alpha. | Andrew Gallatin | 2001-03-23 | 1 | -0/+5 |
| * | Eliminate global node types and instead use an operations vector for | Jonathan Lemon | 2001-03-12 | 6 | -684/+561 |
| * | Grab the process lock while calling psignal and before calling psignal. | John Baldwin | 2001-03-07 | 2 | -4/+7 |
| * | Just hold the proc lock while getting the parent's PID rather than a | John Baldwin | 2001-03-07 | 2 | -20/+10 |
| * | - Hold both an exclusive proctree lock and the proc lock when reparenting | John Baldwin | 2001-03-07 | 1 | -10/+11 |
| * | Only pick up so_error the first time through with EISCONN, as advertised. | Jonathan Lemon | 2001-03-02 | 1 | -1/+1 |
| * | Correctly emulate linux_connect. For nonblocking sockets, the behavior | Jonathan Lemon | 2001-03-01 | 1 | -51/+21 |
| * | Reviewed by: jlemon | Adrian Chadd | 2001-03-01 | 2 | -19/+17 |
| * | MFS: bring the consistent `compat_3_brand' support into -CURRENT | David E. O'Brien | 2001-02-24 | 1 | -0/+1 |
| * | o Move per-process jail pointer (p->pr_prison) to inside of the subject | Robert Watson | 2001-02-21 | 4 | -16/+8 |
| * | Allow debugging output to be controlled on a per-syscall granularity. | Jonathan Lemon | 2001-02-16 | 6 | -147/+259 |
| * | Add mount syscall to linux emulation. Also improve emulation of reboot. | Jonathan Lemon | 2001-02-16 | 2 | -0/+109 |
| * | Change and clean the mutex lock interface. | Bosko Milekic | 2001-02-09 | 4 | -12/+12 |