summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2001-12-08Better pmap_kenter_pa() and pmap_kremove() implementation.Miod Vallat
2001-12-08when strerror() has an Unknown error, also set EINVALTheo de Raadt
2001-12-08Use PMAP_MANAGED() macro everywhere instead of hand-expanding it.Miod Vallat
2001-12-08m68k_trunc_page -> trunc_pageMiod Vallat
2001-12-08mflags and len were uninitialized in bridge_broadcast (source of someJason Wright
accounting errors me thinks).
2001-12-08Be 9600-bauds friendly and panic() on unexpected issues, rather than printf()Miod Vallat
in loop.
2001-12-08use only one path to X11 UNIX domain socket vs. an array of pathsKevin Steves
to try. report from djast@cs.toronto.edu. ok markus@
2001-12-08db_console is declared in <ddb/db_var.h>. Fix a typo while there, too.Miod Vallat
2001-12-08Update hardware list, fix a few typos as well.Miod Vallat
2001-12-08sync with freebsd.Federico G. Schwindt
2001-12-08Do not compile the pnp attachments unless they're requested; deraadt@ okFederico G. Schwindt
2001-12-08Partially sync with FreeBSD; mostly pthread_cancel(3) related changes.Federico G. Schwindt
make includes is needed in case you want to play.
2001-12-08style: Use queue.h macro's for list traversal, convert several (&thing)->fooJason Wright
to thing.foo under the principal less puncuation is easier to read.
2001-12-08Go ahead and fix the xircom filter setup to work on big endian too ↵Jason Wright
(untested, but it's pretty similiar to the tested 21143 case).
2001-12-08use htole32() on the data going into the setup frame for the ↵Jason Wright
dc_setfilt_21143() case at least. XXX I'm looking at the other filter setups and they appear to need work for BE too.
2001-12-08save the pid as well, and only do the atexit in the same pidTheo de Raadt
2001-12-08Sprinkle pmap_update calls where relevant and some otherArtur Grabowski
misc pmap usage fixes.
2001-12-07Add ERRORS and STANDARDS sectionsTodd C. Miller
2001-12-07o Turn off ECHONL in addition to ECHOTodd C. Miller
o Return NULL of read(2) returns -1 o Add ERRORS and STANDARDS sections
2001-12-07From XPG4.2: read(2) can return EIO if the process is a member ofTodd C. Miller
a background process attempting to read from its controlling terminal, the process is ignoring or blocking the SIGTTIN signal or the process group is orphaned. Verified against reality...
2001-12-07Kill longjmp by not restarting system calls on receipt of SIGALRM.Todd C. Miller
We can then just check the flag to see that the alarm ran out.
2001-12-07Oops, need rtc in here, tooJason Wright
2001-12-07missing commaTodd C. Miller
2001-12-07OK, this is horrible. stdio safety in a signal handler, requires that weTheo de Raadt
make the regular data stream non-buffered. This drastically reduces tcpdump performance. Let us commit this, and see how people react. But realistically, without this, we cannot gaurantee that the tail of a file is correct on signal.
2001-12-07do not call abort(), it is tastelessTheo de Raadt
2001-12-07Instead of restoring the tty mode, restoring the signal handler,Todd C. Miller
unblocking the signal and redelivering it just make all our signal handler interupt system calls and set a flag. We can just deliver the signal at the end right before we would normally return. This solves the SIG_IGN problem nicely and causes readpassphrase() to return when someone hits ^C even if the handler is SIG_IGN.
2001-12-07add ohci and several basic usb devices.Jason Wright
2001-12-07NKMEMPAGES defines.Artur Grabowski
2001-12-07add example for ftp-proxy data connections, to reduce some of the questionsBob Beck
on misc@. ok dhartmei@
2001-12-07Document signal handling in readpassphrase(3)Todd C. Miller
2001-12-07Add CAVEATS section pointing out the dangers of closing fds <= 2Todd C. Miller
as found by Markus.
2001-12-07fix signal doscTheo de Raadt
2001-12-07rtc* at ebus?Jason Wright
2001-12-07Mimic some of the rtc handling (the m5819 on the x1 is a ds1287-alike) from ↵Jason Wright
i386, especially to do with year handling.
2001-12-07kill more registers;Mike Pechkin
millert@ ok
2001-12-07sort SEE ALSO;Mike Pechkin
2001-12-07Don't disable TRDY/RETRY, this doesn't have the expected behavior.Jason Wright
2001-12-07make it compile on SUN4M-onlyMichael Shalayeff
2001-12-07Use pmap_kenter for buffers and msgbuf.Artur Grabowski
2001-12-07Block keyboard-generated signals during database accesses.Todd C. Miller
2001-12-07mark longjmp raceTheo de Raadt
2001-12-07bitmask_snprintf goes awayTheo de Raadt
2001-12-07syncTheo de Raadt
2001-12-07rtc at ebus; netbsdJason Wright
2001-12-07add rtc cfdriverJason Wright
2001-12-07remove fxp. hey art, that is how i respond to kernel bloat!Theo de Raadt
2001-12-07o point pthread_setcancel(type|state) manpages where they belong.Federico G. Schwindt
o remove functions from pthread_cancel(3).
2001-12-07Since amiga now has correct pmap_k* and uses them for mappingArtur Grabowski
the buffer cache, it's a good idea to use them in pagemove too.
2001-12-07Sigh. MACHINE_NONCONTIG is not only non-optional, it has been replacedArtur Grabowski
by MACHINE_NEW_NONCONTIG ages ago and that option is gone too.
2001-12-07Some ansification and cleanups in pmap_{zero,copy}_page*Artur Grabowski