| Commit message (Expand) | Author | Age | Files | Lines |
* | Obtained from: Luoqi | dillon | 1999-01-19 | 1 | -2/+3 |
* | - Move lkmnosys() to kern_syscall.c | peter | 1999-01-17 | 1 | -145/+43 |
* | Move lkmnosys() from kern_lkm.c to here. | peter | 1999-01-17 | 1 | -1/+13 |
* | Try and clean up the multiple formal loading support a bit, based on | peter | 1999-01-17 | 1 | -10/+21 |
* | A few small improvements to the bus code: | dfr | 1999-01-16 | 1 | -4/+75 |
* | Add getenv_int(), specifically for retrieving integer values from kernel | msmith | 1999-01-15 | 1 | -1/+20 |
* | Add sscanf/vsscanf/strtoq/strtouq to the kernel. Initially these will be used | msmith | 1999-01-15 | 1 | -0/+793 |
* | Re-enable the options in ps(1) that were disabled with the Linux | julian | 1999-01-13 | 1 | -1/+6 |
* | Silence warnings. | eivind | 1999-01-12 | 1 | -5/+10 |
* | Silence warnings. | eivind | 1999-01-12 | 1 | -3/+3 |
* | Remove warning | n_hibma | 1999-01-10 | 1 | -3/+1 |
* | Back out last change to sysctl. | phk | 1999-01-10 | 1 | -47/+2 |
* | Add kernel support for sysctl descriptions. The NO_SYSCTL_DESCRIPTIONS option | des | 1999-01-10 | 1 | -3/+48 |
* | KNFize, by bde. | eivind | 1999-01-10 | 14 | -66/+59 |
* | Remove a diagnostic message left in by mistake. | dfr | 1999-01-09 | 1 | -3/+2 |
* | Implement a mechanism for a module to report a small amount of module | dfr | 1999-01-09 | 2 | -3/+31 |
* | Implement support for adding syscalls in KLD modules. | dfr | 1999-01-09 | 1 | -0/+94 |
* | Split DIAGNOSTIC -> DIAGNOSTIC, INVARIANTS, and INVARIANT_SUPPORT as | eivind | 1999-01-08 | 17 | -279/+134 |
* | Changes to the LINUX_THREADS support to only allocate extra memory for | julian | 1999-01-07 | 3 | -36/+55 |
* | Remove a hard-coded table of kernel console I/O functions exported | yokota | 1999-01-07 | 1 | -18/+7 |
* | Add (but don't activate) code for a special VM option to make | julian | 1999-01-06 | 2 | -2/+56 |
* | Don't allow more than one module with the same name to be loaded. | msmith | 1999-01-05 | 1 | -4/+17 |
* | Remove the 'waslocked' parameter to vfs_object_create(). | eivind | 1999-01-05 | 6 | -48/+24 |
* | Finish staticization. | eivind | 1999-01-05 | 2 | -10/+10 |
* | Ifdefed conditionally used simplock variables. | bde | 1999-01-02 | 3 | -5/+11 |
* | Fixed bitrot in a comment. Fixed some style bugs. | bde | 1999-01-01 | 1 | -5/+3 |
* | When loading something that has undefined symbols, it would be helpful to | peter | 1998-12-31 | 2 | -10/+26 |
* | Various changes to support OSF1 emulation: | dfr | 1998-12-30 | 2 | -7/+8 |
* | Improved DDB_UNATTENDED behaviour. From the submitter: | msmith | 1998-12-28 | 2 | -5/+9 |
* | Fix some 64bit truncation problems which crept into SYSCTL_LONG() with the | dfr | 1998-12-27 | 3 | -39/+12 |
* | Tweak ptrace(PT_READ_U) so that the last alpha register can be read. | dfr | 1998-12-26 | 1 | -2/+5 |
* | Restored rev.1.31 which was clobbered by rev.1.69 (the big Lite2 | bde | 1998-12-24 | 2 | -4/+6 |
* | Adjust some comments to prevent future confusion on the implementation. | dillon | 1998-12-22 | 1 | -6/+26 |
* | Correctly handle misaligned VMIO buffer (whose start or end offset in the VM | luoqi | 1998-12-22 | 1 | -77/+92 |
* | Check return value of tsleep(). I've checked of all call points - | eivind | 1998-12-22 | 2 | -8/+14 |
* | Staticize. | eivind | 1998-12-21 | 2 | -18/+18 |
* | Add asleep() and await() support. Currently highly experimental. A | dillon | 1998-12-21 | 1 | -2/+189 |
* | Fix two bogons created by 'patch(1)' in my last commit. | julian | 1998-12-19 | 1 | -2/+3 |
* | Reviewed by: Luoqi Chen, Jordan Hubbard | julian | 1998-12-19 | 5 | -5/+161 |
* | Removed the cast to a pointer in the definition of PS_STRINGS and | bde | 1998-12-16 | 1 | -4/+3 |
* | Removed all traces of SYSCTL_INTPTR(). Pointers can't really be passed | bde | 1998-12-16 | 1 | -5/+4 |
* | Removed bogus casts of USRSTACK and/or the other operand in binary | bde | 1998-12-16 | 1 | -7/+4 |
* | Wrap two macros into do { ... } while (0), and fix the way they're used | des | 1998-12-15 | 2 | -4/+4 |
* | fix intermediate overflow in 'quad = int * int' situation by casting | dillon | 1998-12-14 | 1 | -2/+2 |
* | Fixed problems with kernel config file overrides of sysv semaphore | dillon | 1998-12-14 | 2 | -3/+5 |
* | Fix -Wuninitialized warning regarding zero-length var-args ctl element. | dillon | 1998-12-14 | 1 | -2/+2 |
* | Add a generic flag, CTLFLAG_SECURE, which can be used to mark a sysctl | truckman | 1998-12-13 | 1 | -2/+3 |
* | getpgid() and getsid() were doing a comparision rather than an assignment, | truckman | 1998-12-13 | 1 | -5/+11 |
* | PR: kern/8965 | dillon | 1998-12-12 | 2 | -2/+6 |
* | When no driver was found for a device, the message 'not probed' appeared | n_hibma | 1998-12-12 | 1 | -5/+5 |