Age | Commit message (Collapse) | Author | |
---|---|---|---|
2000-09-26 | Implement getnulldev that returns the dev_t for "/dev/null". | Artur Grabowski | |
2000-07-31 | Add defines for ULLONG_MAX, LLONG_MAX, and LLONG_MIN in terms of | Todd C. Miller | |
UQUAD_MAX, QUAD_MAX, and QUAD_MIN respectively. | |||
2000-07-11 | since .cvsignore is there, .keep_me is not needed | Theo de Raadt | |
2000-07-06 | Add spllowersoftclock(), same as splsoftclock(). (art@ ok) | Hakan Olsson | |
2000-06-08 | Add explicit inclusions of signalvar.h to files actually using syms defined | Niklas Hallqvist | |
there but relying on an indirect inclusion | |||
2000-06-08 | &vm_pmap -> vm_map.pmap | Artur Grabowski | |
2000-06-05 | Changes to exit handling. | Artur Grabowski | |
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 | |||
2000-04-11 | Check usec for >= 1000000, not just > ; as msaitoh@NetBSD.org | Paul Janzen | |
2000-04-07 | add DISKMINOR(), and repair redefinitions | Theo de Raadt | |
2000-03-26 | callout.h is gone | Theo de Raadt | |
2000-03-23 | New API for timeouts. Replaces the old timeout()/untimeout() API and | Artur Grabowski | |
makes it the callers responsibility to allocate resources for the timeouts. This is a KISS implementation and does _not_ solve the problems of slow handling of a large number of pending timeouts (this will be solved in future work) (although hardclock is now guarateed to take constant time for handling of timeouts). Old timeout() and untimeout() are implemented as wrappers around the new API and kept for compatibility. They will be removed as soon as all subsystems are converted to use the new API. | |||
2000-03-03 | $OpenBSD$ | Todd T. Fries | |
2000-02-22 | enlarge msgbuf, somewhat line netbsd did | Theo de Raadt | |
2000-02-22 | Use an _BSD_FOO_T_ type declaration for off_t in machine/ansi.h to allow | Todd C. Miller | |
off_t to be visible in stdio.h even in strict ansi mode. This is needed for ftello()/fseeko() and it allows us to remove the horrible fpos_t hack. | |||
2000-01-09 | add INET6 into conf/GENERIC. | Jun-ichiro itojun Hagino | |
add pseudo-devices for IPv6 into arch/*/conf/GENERIC. nuke arch/*/conf/GENERIC.v6. | |||
2000-01-03 | .Sh "SEE ALSO" -> .Sh SEE ALSO | Paul Janzen | |
1999-12-08 | bring in KAME IPv6 code, dated 19991208. | Jun-ichiro itojun Hagino | |
replaces NRL IPv6 layer. reuses NRL pcb layer. no IPsec-on-v6 support. see sys/netinet6/{TODO,IMPLEMENTATION} for more details. GENERIC configuration should work fine as before. GENERIC.v6 works fine as well, but you'll need KAME userland tools to play with IPv6 (will be bringed into soon). | |||
1999-11-22 | add empty mmioctl() implementation for new /dev/mem interface for all | Matthieu Herrb | |
architectures. | |||
1999-11-08 | move MI definition of rd into it's MI place also fixing | Michael Shalayeff | |
attributes, allowing kernels to exist w/ rd as the only disk device. tested on a few archs; niels@ & millert@ ok | |||
1999-09-27 | oops! | Steve Murphree | |
1999-09-27 | Some cleaning... | Steve Murphree | |
1999-09-27 | Adding support for MVME188 and MVME197 | Steve Murphree | |
1999-09-27 | changed loader load address. | Steve Murphree | |
1999-09-27 | Added to support MVME188 and MVME197 | Steve Murphree | |
1999-09-27 | adding support for MVME188 and MVME197. Plus 32bit if_ie. | Steve Murphree | |
1999-09-03 | Change the pmap_enter api to pass down an argument that indicates | Artur Grabowski | |
the access type that caused this mapping. This is to simplify pmaps with mod/ref emulation (none for the moment) and in some cases speed up pmap_is_{referenced,modified}. At the same time, clean up some mappings that had too high protection. XXX - the access type is incorrect in old vm, it's only used by uvm and MD code. The actual use of this in pmap_enter implementations is not in this commit. | |||
1999-08-17 | factor out ie device definition; niklas@ ok | Michael Shalayeff | |
1999-08-17 | New cpu_fork API to take a stack in which you point the child's stackpointer | Niklas Hallqvist | |
to, at the bottom or the top, depending on your architecture's stack growth direction. This is in preparation for Linux' clone(2) emulation. port maintainers, please check that I did the work right. | |||
1999-07-20 | 126 -> NBT_BAD | Constantine Sapuntzakis | |
Fix disklabel/bad sectors stuff in wd | |||
1999-07-18 | pmap_activate() and pmap_deactivate() are MD | Theo de Raadt | |
1999-07-18 | fix pmap_activate() and pmap_deactivate() arguments after art changed things | Theo de Raadt | |
1999-07-18 | fix pmap_activate() and pmap_deactivate() arguments after art changed things | Theo de Raadt | |
1999-07-09 | - remove all trailing whitespace | Aaron Campbell | |
* except when it is escaped with a `\' at the end of the line - fix remaining .Nm usage as well - this is from a patch I received from kwesterback@home.com, who has been working on some scripts for fixing formatting errors in mdoc'd man pages Ok, so there could be a cost/benefit debate with this commit, but since I have the patch we might as well commit it... | |||
1999-07-08 | flesh out .Dt | Theo de Raadt | |
1999-07-08 | install into man8/arch subdirs | Theo de Raadt | |
1999-07-07 | define vaddr_t, paddr_t, vsize_t and psize_t | Artur Grabowski | |
1999-05-29 | Main config for vme drivers. | Steve Murphree | |
1999-05-29 | Added vme bus device drivers. MVME328, MVME376, MVME332 | Steve Murphree | |
1999-05-24 | Only do basic work in the ethernet interrupt context, and queue packets to | Jason Wright | |
be bridged. Do the real work in a scheduled netisr. | |||
1999-05-23 | remove argument from .Os macros so value in /usr/share/tmac/mdoc/doc-common | Aaron Campbell | |
is used instead; kwesterback@home.com | |||
1999-05-22 | Add new vm_swap code for dynamic swap. From netbsd, munged some by me, and | Tobias Weingartner | |
others. syscall commit pending. | |||
1999-05-10 | Use symbolic define for BYTE_ORDER. | Marc Espie | |
(don't forget that cpp is `lazy': #define A B #define B value #if A == value works, since A isn't extended before it's needed, by which time B is known) | |||
1999-04-11 | Fix for 25 Mhz. | Steve Murphree | |
1999-03-03 | rework check_eh() so that it is bridge aware | Jason Wright | |
1999-02-09 | $Log$ is ugly | Theo de Raadt | |
1999-02-09 | Added kernel support for user debugging. Fixed file ID's | Steve Murphree | |
1999-01-11 | panic prints a newline for you, don't do it in the panic string | Todd C. Miller | |
1999-01-10 | Generalize cpu_set_kpc to take any kind of arg; mostly from NetBSD | Niklas Hallqvist | |
1999-01-08 | check for lp->d_secpercyl == 0) in bounds_check_with_label() | Todd C. Miller | |
1999-01-08 | make uint*_t line up nicely and add a few $OpenBSD$ tags that were missing | Todd C. Miller | |