#
4c366c49 |
| 03-Jul-2002 |
miod <miod@openbsd.org> |
Change all variables definitions (int foo) in sys/sys/*.h to variable declarations (extern int foo), and compensate in the appropriate locations.
|
#
b17dc2ec |
| 11-Jun-2002 |
art <art@openbsd.org> |
splassert(IPL_TTY) where comments tell us we should
|
#
c4071fd1 |
| 14-Mar-2002 |
millert <millert@openbsd.org> |
First round of __P removal in sys
|
#
89d75dcf |
| 30-Jan-2002 |
nordin <nordin@openbsd.org> |
Move SET/CLR/ISSET macros to param.h. fgsch@ and millert@ ok
|
#
2b355e45 |
| 27-Dec-2001 |
nordin <nordin@openbsd.org> |
Increment reference count when copying session pointer pr#2112. ok deraadt@
|
#
489e49f9 |
| 06-Nov-2001 |
miod <miod@openbsd.org> |
Replace inclusion of <vm/foo.h> with the correct <uvm/bar.h> when necessary. (Look ma, I might have broken the tree)
|
#
0a78a5e0 |
| 07-Oct-2001 |
art <art@openbsd.org> |
Setting the VTIME to a value larger than 214 lead to an integer overflow in the calculation of the sleep timeout which could lead to a panic.
Instead of doing the very error-prone, and in more than
Setting the VTIME to a value larger than 214 lead to an integer overflow in the calculation of the sleep timeout which could lead to a panic.
Instead of doing the very error-prone, and in more than one way incorrect, sleep time calculation, allocate an external timeout and let it wake us.
Reported by: Raan Young <raan@graand-visions.com>
show more ...
|
#
8bd6c673 |
| 28-Sep-2001 |
art <art@openbsd.org> |
Random cleanup (I don't like Ms in my tree).
|
#
bcb7fb27 |
| 05-Jul-2001 |
art <art@openbsd.org> |
Get rid of REAL_CLISTS. It was never implemented and the tentacles are everywhhere.
|
#
675603b3 |
| 14-May-2001 |
angelos <angelos@openbsd.org> |
tty stats sysctl, deraadt@ok
|
#
0132db2c |
| 02-Mar-2001 |
art <art@openbsd.org> |
Casting magic to avoid warnings on alpha.
|
#
cc90df54 |
| 01-Mar-2001 |
provos <provos@openbsd.org> |
port kqueue changes from freebsd, plus all required openbsd glue. okay deraadt@, millert@ from jlemon@freebsd.org: extend kqueue down to the device layer, backwards compatible approach suggested by p
port kqueue changes from freebsd, plus all required openbsd glue. okay deraadt@, millert@ from jlemon@freebsd.org: extend kqueue down to the device layer, backwards compatible approach suggested by peter@freebsd.org
show more ...
|
#
685a0ced |
| 19-Jul-2000 |
art <art@openbsd.org> |
Many drivers use a timeout on ttrstrt, make this a generic interface.
|
#
f69f8c52 |
| 05-Jun-2000 |
art <art@openbsd.org> |
Changes to exit handling.
cpu_exit no longer frees the vmspace and u-area. This is now handled by a separate kernel thread "reaper". This is to avoid sleeping locks in the critical path of cpu_exit
Changes to exit handling.
cpu_exit no longer frees the vmspace and u-area. This is now handled by a separate kernel thread "reaper". This is to avoid sleeping locks in the critical path of cpu_exit where we're not allowed to sleep.
From NetBSD
show more ...
|
#
0b37ab9b |
| 23-Mar-2000 |
art <art@openbsd.org> |
Iiieeek! This kludge was almost funny.
Probably something from the stone age. Kill it.
|
#
29286278 |
| 25-Nov-1999 |
art <art@openbsd.org> |
Use PAGE_SIZE instead of NBPG.
|
#
88ee7ccf |
| 01-Jun-1999 |
art <art@openbsd.org> |
remove the "ifdef pmap_resident_count" hack and replace it with a macro. change some &vm->vm_pmap to vm->vm_map.pmap
|
#
8e0752cc |
| 28-Mar-1998 |
deraadt <deraadt@openbsd.org> |
nasty indent
|
#
0163dc97 |
| 20-Feb-1998 |
niklas <niklas@openbsd.org> |
Please GCC 2.8's harsher view of good style
|
#
f3542b36 |
| 03-Feb-1998 |
deraadt <deraadt@openbsd.org> |
bad types; wileyc@sekiya.twics.co.jp
|
#
40d0bf85 |
| 13-Nov-1997 |
deraadt <deraadt@openbsd.org> |
Count characters even when !OPOST and FLUSHO. Don't output the \r for ONLCR if FLUSHO; mycroft
|
#
469b451a |
| 13-Nov-1997 |
deraadt <deraadt@openbsd.org> |
in ttywait(), double check if we need to sleep before sleeping
|
#
07feb63c |
| 06-Nov-1997 |
csapuntz <csapuntz@openbsd.org> |
Updates for VFS Lite 2 + soft update.
|
#
27a0bb0c |
| 21-Oct-1997 |
niklas <niklas@openbsd.org> |
When the input queues are flushed on a blocked tty, make sure to unblock it, if it's currently in a blocked state due to input flow control. This was typically seen with drivers implementing th t_hw
When the input queues are flushed on a blocked tty, make sure to unblock it, if it's currently in a blocked state due to input flow control. This was typically seen with drivers implementing th t_hwiflow function, and starting of ppp (line discipline changes flushes the input queue). Independently discovered and fixed slightly different than NetBSD PR#4227.
show more ...
|
#
f6d35f95 |
| 06-Oct-1997 |
deraadt <deraadt@openbsd.org> |
back out vfs lite2 till after 2.2
|