summaryrefslogtreecommitdiff
path: root/sys/kern
Commit message (Expand)AuthorAgeFilesLines
* Fix some 64bit truncation problems which crept into SYSCTL_LONG() with theDoug Rabson1998-12-273-39/+12
* Tweak ptrace(PT_READ_U) so that the last alpha register can be read.Doug Rabson1998-12-261-2/+5
* Restored rev.1.31 which was clobbered by rev.1.69 (the big Lite2Bruce Evans1998-12-242-4/+6
* Adjust some comments to prevent future confusion on the implementation.Matthew Dillon1998-12-221-6/+26
* Correctly handle misaligned VMIO buffer (whose start or end offset in the VMLuoqi Chen1998-12-221-77/+92
* Check return value of tsleep(). I've checked of all call points -Eivind Eklund1998-12-222-8/+14
* Staticize.Eivind Eklund1998-12-212-18/+18
* Add asleep() and await() support. Currently highly experimental. AMatthew Dillon1998-12-211-2/+189
* Fix two bogons created by 'patch(1)' in my last commit.Julian Elischer1998-12-191-2/+3
* Reviewed by: Luoqi Chen, Jordan HubbardJulian Elischer1998-12-195-5/+161
* Removed the cast to a pointer in the definition of PS_STRINGS andBruce Evans1998-12-161-4/+3
* Removed all traces of SYSCTL_INTPTR(). Pointers can't really be passedBruce Evans1998-12-161-5/+4
* Removed bogus casts of USRSTACK and/or the other operand in binaryBruce Evans1998-12-161-7/+4
* Wrap two macros into do { ... } while (0), and fix the way they're usedDag-Erling Smørgrav1998-12-152-4/+4
* fix intermediate overflow in 'quad = int * int' situation by castingMatthew Dillon1998-12-141-2/+2
* Fixed problems with kernel config file overrides of sysv semaphoreMatthew Dillon1998-12-142-3/+5
* Fix -Wuninitialized warning regarding zero-length var-args ctl element.Matthew Dillon1998-12-141-2/+2
* Add a generic flag, CTLFLAG_SECURE, which can be used to mark a sysctlDon Lewis1998-12-131-2/+3
* getpgid() and getsid() were doing a comparision rather than an assignment,Don Lewis1998-12-131-5/+11
* PR: kern/8965Matthew Dillon1998-12-122-2/+6
* When no driver was found for a device, the message 'not probed' appearedNick Hibma1998-12-121-5/+5
* Rename one of the two devfs_link's to devfs_makelink.Eivind Eklund1998-12-101-3/+3
* poll(2) sets POLLNVAL for descriptors passed in that are less thanJordan K. Hubbard1998-12-101-2/+4
* In ktrwrite, use uio_procp = curproc vs 0Robert V. Baron1998-12-101-2/+2
* Get rid of CTLTYPE_OPAQUE in a SYSCTL_OPAQUE - it is added my theEivind Eklund1998-12-091-2/+2
* Backed out the FIOASYNC fix in rev.1.108. fcntl(fd, F_SETFL, flags)Bruce Evans1998-12-081-2/+1
* The "easy" fixes for compiling the kernel -Wunused: remove unreferenced staticArchie Cobbs1998-12-079-27/+11
* Fix grouping of statements. This remove a potential panic in the softEivind Eklund1998-12-071-5/+5
* Move stime declaration to main block, otherwise can left uninitializedAndrey A. Chernov1998-12-071-2/+3
* Avoid compiler warning (printf arg type mismatch) when compiling #ifdef DEBUGArchie Cobbs1998-12-061-2/+2
* Even the most recently allocated buffer may not have its b_blknoKirk McKusick1998-12-051-2/+5
* Examine all occurrences of sprintf(), strcat(), and str[n]cpy()Archie Cobbs1998-12-049-19/+21
* Fixed broken code in sendfile(2) when using file offsets.David Greenman1998-12-031-5/+7
* Add snprintf(3) and vsnprintf(3) capability to the kernel.Archie Cobbs1998-12-031-2/+55
* - For some old Cyrix CPUs, %cr2 is clobbered by interrupts. ThisKATO Takenori1998-12-021-27/+59
* Check return value of malloc() in expand_name.Eivind Eklund1998-12-021-1/+3
* Make the previous behaviour the default, add a sysctl which youPoul-Henning Kamp1998-11-292-24/+84
* Compare p_cpulimit with RLIM_INFINITY before comparing it with the processDavid Greenman1998-11-271-2/+3
* Don't forget to update the pmap associated with aio daemons when addingTor Egge1998-11-271-2/+2
* Attempt to handle interrupts delivered to all IO APICs by using the firstTor Egge1998-11-261-2/+17
* Staticize.Eivind Eklund1998-11-262-5/+5
* Fixed the previous fix - stathz doesn't give the statclock frequencyBruce Evans1998-11-261-5/+6
* Oops, yet again back out some local changes that shouldn't have beenBruce Evans1998-11-261-5/+5
* Fixed scaling of p_pctcpu. It was wrong by a factor of stathz/hz.Bruce Evans1998-11-261-8/+8
* Make timecounters more resistant to badly behaved SW/HW which locksPoul-Henning Kamp1998-11-232-20/+36
* Add a kludge to prevent panicing when using VM86 and hitting hereSøren Schmidt1998-11-232-4/+4
* Fixed a missing include. `SYSININT(...);' garbage in gave null garbage out.Bruce Evans1998-11-231-1/+2
* We can't call fsetown() from sonewconn() because sonewconn() is be calledDon Lewis1998-11-233-5/+5
* Fixed some missing cases in the check for ioctls that involve modification.Bruce Evans1998-11-221-8/+25
* Closed a very narrow and rare race condition that involved net interrupts,David Greenman1998-11-182-3/+8