Up to [cvs.netbsd.org] / src / sys / sys
Request diff between arbitrary revisions
Default branch: MAIN
Revision 1.45.14.2 / (download) - annotate - [select for diffs], Fri Jun 5 16:23:34 2009 UTC (4 weeks ago) by snj
Branch: netbsd-4
Changes since 1.45.14.1: +6 -1
lines
Diff to previous 1.45.14.1 (colored) to branchpoint 1.45 (colored) next main 1.46 (colored)
Pull up following revision(s) (requested by joerg in ticket #1321): sys/net80211/ieee80211_netbsd.h: revision 1.15 sys/sys/queue.h: revision 1.49 move TAILQ_FOREACH_SAFE -> sys/queue.h
Revision 1.45.14.1.4.1 / (download) - annotate - [select for diffs], Fri Jun 5 16:21:52 2009 UTC (4 weeks ago) by snj
Branch: netbsd-4-0
Changes since 1.45.14.1: +6 -1
lines
Diff to previous 1.45.14.1 (colored) next main 1.45.14.2 (colored)
Pull up following revision(s) (requested by joerg in ticket #1321): sys/net80211/ieee80211_netbsd.h: revision 1.15 sys/sys/queue.h: revision 1.49 move TAILQ_FOREACH_SAFE -> sys/queue.h
Revision 1.50.4.1 / (download) - annotate - [select for diffs], Wed May 13 17:23:03 2009 UTC (7 weeks, 2 days ago) by jym
Branch: jym-xensuspend
Changes since 1.50: +36 -1
lines
Diff to previous 1.50 (colored) next main 1.51 (colored)
Sync with HEAD. Commit is split, to avoid a "too many arguments" protocol error.
Revision 1.48.12.1 / (download) - annotate - [select for diffs], Mon May 4 08:14:35 2009 UTC (2 months ago) by yamt
Branch: yamt-nfs-mp
Changes since 1.48: +46 -1
lines
Diff to previous 1.48 (colored) next main 1.49 (colored)
sync with head.
Revision 1.49.4.2 / (download) - annotate - [select for diffs], Tue Apr 28 07:37:53 2009 UTC (2 months ago) by skrll
Branch: nick-hppapmap
Changes since 1.49.4.1: +36 -1
lines
Diff to previous 1.49.4.1 (colored) to branchpoint 1.49 (colored) next main 1.50 (colored)
Sync with HEAD.
Revision 1.52 / (download) - annotate - [select for diffs], Mon Apr 20 09:56:08 2009 UTC (2 months, 2 weeks ago) by mschuett
Branch: MAIN
CVS Tags: yamt-nfs-mp-base5,
yamt-nfs-mp-base4,
yamt-nfs-mp-base3,
nick-hppapmap-base4,
nick-hppapmap-base3,
nick-hppapmap-base,
jym-xensuspend-nbase,
jym-xensuspend-base,
HEAD
Changes since 1.51: +31 -1
lines
Diff to previous 1.51 (colored)
Add queue macros SLIST_FOREACH_SAFE, STAILQ_FOREACH_SAFE, STAILQ_LAST, SIMPLEQ_CONCAT, and SIMPLEQ_LAST. Remove seperate definitions outside of queue.h.
Revision 1.51 / (download) - annotate - [select for diffs], Wed Mar 11 06:51:53 2009 UTC (3 months, 3 weeks ago) by mrg
Branch: MAIN
Changes since 1.50: +6 -1
lines
Diff to previous 1.50 (colored)
add a SIMPLEQ_FOREACH_SAFE() macro. document it, and the TAILQ versions.
Revision 1.49.4.1 / (download) - annotate - [select for diffs], Mon Jan 19 13:20:30 2009 UTC (5 months, 2 weeks ago) by skrll
Branch: nick-hppapmap
Changes since 1.49: +6 -1
lines
Diff to previous 1.49 (colored)
Sync with HEAD.
Revision 1.48.8.2 / (download) - annotate - [select for diffs], Sat Jan 17 13:29:41 2009 UTC (5 months, 2 weeks ago) by mjf
Branch: mjf-devfs2
Changes since 1.48.8.1: +5 -0
lines
Diff to previous 1.48.8.1 (colored) to branchpoint 1.48 (colored) next main 1.49 (colored)
Sync with HEAD.
Revision 1.49.2.1 / (download) - annotate - [select for diffs], Sat Dec 13 01:15:35 2008 UTC (6 months, 3 weeks ago) by haad
Branch: haad-dm
Changes since 1.49: +6 -1
lines
Diff to previous 1.49 (colored) next main 1.50 (colored)
Update haad-dm branch to haad-dm-base2.
Revision 1.49.6.1 / (download) - annotate - [select for diffs], Thu Nov 20 03:22:38 2008 UTC (7 months, 1 week ago) by snj
Branch: netbsd-5
CVS Tags: netbsd-5-0-RELEASE,
netbsd-5-0-RC4,
netbsd-5-0-RC3,
netbsd-5-0-RC2,
netbsd-5-0-RC1,
netbsd-5-0
Changes since 1.49: +6 -1
lines
Diff to previous 1.49 (colored) next main 1.50 (colored)
Pull up following revision(s) (requested by darran in ticket #92):
sys/opencrypto/cryptodev.c: revision 1.45
sys/sys/queue.h: revision 1.50
sys/opencrypto/cryptodev.h: revision 1.15
sys/opencrypto/crypto.c: revision 1.30
Fix a race condition in opencrypto where the crypto request could be
completed by the crypto device, queued on the retq, but freed by the
ioctl lwp. The problem manifests as various panics relating to the
condvar inside the request. The problem can occur whenever the crypto
device completes the request immediately and the ioctl skips the
cv_wait().
The problem can be reproduced by enabling cryptosoft and running an
openssl
speed test. E.g.
sysctl -w kern.cryptodevallowsoft=-1
openssl speed -engine cryptodev -evp des-ede3-cbc -multi 64
Add a macro for TAILQ_FOREACH_REVERSE_SAFE() to queue.h, since this
was missing and the opencrypto code removes requests from a list while
iterating with TAILQ_FOREACH_REVERSE().
Add missing cv_destroy() calls for the key request cleanup.
Reviewed by Thor Lancelot Simon.
Revision 1.50 / (download) - annotate - [select for diffs], Tue Nov 18 12:59:58 2008 UTC (7 months, 2 weeks ago) by darran
Branch: MAIN
CVS Tags: nick-hppapmap-base2,
mjf-devfs2-base,
haad-nbase2,
haad-dm-base2,
haad-dm-base,
ad-audiomp2-base,
ad-audiomp2
Branch point for: jym-xensuspend
Changes since 1.49: +6 -1
lines
Diff to previous 1.49 (colored)
Fix a race condition in opencrypto where the crypto request could be
completed by the crypto device, queued on the retq, but freed by the
ioctl lwp. The problem manifests as various panics relating to the
condvar inside the request. The problem can occur whenever the crypto
device completes the request immediately and the ioctl skips the cv_wait().
The problem can be reproduced by enabling cryptosoft and running an openssl
speed test. E.g.
sysctl -w kern.cryptodevallowsoft=-1
openssl speed -engine cryptodev -evp des-ede3-cbc -multi 64
Add a macro for TAILQ_FOREACH_REVERSE_SAFE() to queue.h, since this
was missing and the opencrypto code removes requests from a list while
iterating with TAILQ_FOREACH_REVERSE().
Add missing cv_destroy() calls for the key request cleanup.
Reviewed by Thor Lancelot Simon.
Revision 1.48.8.1 / (download) - annotate - [select for diffs], Sun Jun 29 09:33:20 2008 UTC (12 months ago) by mjf
Branch: mjf-devfs2
Changes since 1.48: +6 -1
lines
Diff to previous 1.48 (colored)
Sync with HEAD.
Revision 1.48.14.1 / (download) - annotate - [select for diffs], Mon Jun 23 04:32:03 2008 UTC (12 months, 1 week ago) by wrstuden
Branch: wrstuden-revivesa
Changes since 1.48: +6 -1
lines
Diff to previous 1.48 (colored) next main 1.49 (colored)
Sync w/ -current. 34 merge conflicts to follow.
Revision 1.48.16.1 / (download) - annotate - [select for diffs], Wed Jun 18 16:33:51 2008 UTC (12 months, 2 weeks ago) by simonb
Branch: simonb-wapbl
Changes since 1.48: +6 -1
lines
Diff to previous 1.48 (colored) next main 1.49 (colored)
Sync with head.
Revision 1.48.10.1 / (download) - annotate - [select for diffs], Tue Jun 17 09:15:17 2008 UTC (12 months, 2 weeks ago) by yamt
Branch: yamt-pf42
Changes since 1.48: +6 -1
lines
Diff to previous 1.48 (colored) next main 1.49 (colored)
sync with head.
Revision 1.49 / (download) - annotate - [select for diffs], Sun Jun 15 16:42:18 2008 UTC (12 months, 2 weeks ago) by christos
Branch: MAIN
CVS Tags: yamt-pf42-base4,
wrstuden-revivesa-base-4,
wrstuden-revivesa-base-3,
wrstuden-revivesa-base-2,
wrstuden-revivesa-base-1,
wrstuden-revivesa-base,
simonb-wapbl-nbase,
simonb-wapbl-base,
netbsd-5-base,
matt-mips64-base2,
haad-dm-base1
Branch point for: nick-hppapmap,
netbsd-5,
haad-dm
Changes since 1.48: +6 -1
lines
Diff to previous 1.48 (colored)
move TAILQ_FOREACH_SAFE -> sys/queue.h
Revision 1.41.2.3 / (download) - annotate - [select for diffs], Mon Jan 21 09:47:57 2008 UTC (17 months, 1 week ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.41.2.2: +18 -1
lines
Diff to previous 1.41.2.2 (colored) next main 1.42 (colored)
sync with head
Revision 1.47.6.1 / (download) - annotate - [select for diffs], Wed Jan 9 01:58:15 2008 UTC (17 months, 3 weeks ago) by matt
Branch: matt-armv6
Changes since 1.47: +18 -1
lines
Diff to previous 1.47 (colored) next main 1.48 (colored)
sync with HEAD
Revision 1.47.14.1 / (download) - annotate - [select for diffs], Wed Dec 26 19:57:55 2007 UTC (18 months, 1 week ago) by ad
Branch: vmlocking2
Changes since 1.47: +18 -1
lines
Diff to previous 1.47 (colored) next main 1.48 (colored)
Sync with head.
Revision 1.47.18.1 / (download) - annotate - [select for diffs], Thu Dec 13 21:57:00 2007 UTC (18 months, 3 weeks ago) by bouyer
Branch: bouyer-xeni386
CVS Tags: bouyer-xeni386-merge1
Changes since 1.47: +18 -1
lines
Diff to previous 1.47 (colored) next main 1.48 (colored)
Sync with HEAD
Revision 1.47.16.1 / (download) - annotate - [select for diffs], Tue Dec 11 15:45:42 2007 UTC (18 months, 3 weeks ago) by yamt
Branch: yamt-kmem
Changes since 1.47: +18 -1
lines
Diff to previous 1.47 (colored) next main 1.48 (colored)
sync with head.
Revision 1.48 / (download) - annotate - [select for diffs], Tue Dec 11 11:24:22 2007 UTC (18 months, 3 weeks ago) by elad
Branch: MAIN
CVS Tags: yamt-pf42-baseX,
yamt-pf42-base3,
yamt-pf42-base2,
yamt-pf42-base,
yamt-nfs-mp-base2,
yamt-nfs-mp-base,
yamt-lazymbuf-base15,
yamt-lazymbuf-base14,
yamt-kmem-base3,
yamt-kmem-base2,
vmlocking2-base3,
nick-net80211-sync-base,
nick-net80211-sync,
mjf-devfs-base,
matt-armv6-nbase,
matt-armv6-base,
keiichi-mipv6-nbase,
keiichi-mipv6-base,
keiichi-mipv6,
hpcarm-cleanup-nbase,
hpcarm-cleanup-base,
cube-autoconf-base,
cube-autoconf,
bouyer-xeni386-nbase,
bouyer-xeni386-base,
ad-socklock-base1
Branch point for: yamt-pf42,
yamt-nfs-mp,
wrstuden-revivesa,
simonb-wapbl,
mjf-devfs2
Changes since 1.47: +18 -1
lines
Diff to previous 1.47 (colored)
Add TAILQ_CONCAT() and STAILQ_CONCAT(), from FreeBSD.
Revision 1.41.2.2 / (download) - annotate - [select for diffs], Mon Sep 3 14:46:33 2007 UTC (22 months ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.41.2.1: +8 -1
lines
Diff to previous 1.41.2.1 (colored)
sync with head.
Revision 1.45.18.1 / (download) - annotate - [select for diffs], Mon Sep 3 07:05:17 2007 UTC (22 months ago) by wrstuden
Branch: wrstuden-fixsa
Changes since 1.45: +3 -1
lines
Diff to previous 1.45 (colored) next main 1.46 (colored)
Sync w/ NetBSD-4-RC_1
Revision 1.46.4.1 / (download) - annotate - [select for diffs], Mon Aug 20 21:28:19 2007 UTC (22 months, 2 weeks ago) by ad
Branch: vmlocking
Changes since 1.46: +3 -1
lines
Diff to previous 1.46 (colored) next main 1.47 (colored)
Sync with HEAD.
Revision 1.46.12.1 / (download) - annotate - [select for diffs], Wed Aug 15 13:50:59 2007 UTC (22 months, 2 weeks ago) by skrll
Branch: nick-csl-alignment
Changes since 1.46: +3 -1
lines
Diff to previous 1.46 (colored) next main 1.47 (colored)
Sync with HEAD.
Revision 1.45.14.1 / (download) - annotate - [select for diffs], Wed Jul 18 20:13:24 2007 UTC (23 months, 2 weeks ago) by liamjfoy
Branch: netbsd-4
CVS Tags: wrstuden-fixsa-newbase,
wrstuden-fixsa-base-1,
wrstuden-fixsa-base,
netbsd-4-0-RELEASE,
netbsd-4-0-RC5,
netbsd-4-0-RC4,
netbsd-4-0-RC3,
netbsd-4-0-RC2,
netbsd-4-0-RC1,
netbsd-4-0-1-RELEASE,
matt-nb4-arm-base,
matt-nb4-arm
Branch point for: netbsd-4-0
Changes since 1.45: +3 -1
lines
Diff to previous 1.45 (colored)
Pull up following revision(s) (requested by joerg in ticket #775): sys/sys/queue.h: revision 1.47 A number of queue(3) macros use NULL, so ensure that it is present.
Revision 1.47 / (download) - annotate - [select for diffs], Wed Jul 18 12:07:35 2007 UTC (23 months, 2 weeks ago) by joerg
Branch: MAIN
CVS Tags: yamt-x86pmap-base4,
yamt-x86pmap-base3,
yamt-x86pmap-base2,
yamt-x86pmap-base,
yamt-x86pmap,
yamt-kmem-base,
vmlocking2-base2,
vmlocking2-base1,
vmlocking-nbase,
vmlocking-base,
reinoud-bufcleanup-nbase,
reinoud-bufcleanup-base,
nick-csl-alignment-base5,
mjf-devfs,
matt-mips64-base,
matt-mips64,
matt-armv6-prevmlocking,
jmcneill-pm-base,
jmcneill-pm,
jmcneill-base,
hpcarm-cleanup,
bouyer-xenamd64-base2,
bouyer-xenamd64-base,
bouyer-xenamd64
Branch point for: yamt-kmem,
vmlocking2,
matt-armv6,
bouyer-xeni386
Changes since 1.46: +3 -1
lines
Diff to previous 1.46 (colored)
A number of queue(3) macros use NULL, so ensure that it is present.
Revision 1.45.16.1 / (download) - annotate - [select for diffs], Tue Feb 27 16:55:16 2007 UTC (2 years, 4 months ago) by yamt
Branch: yamt-idlelwp
Changes since 1.45: +6 -1
lines
Diff to previous 1.45 (colored) next main 1.46 (colored)
- sync with head. - move sched_changepri back to kern_synch.c as it doesn't know PPQ anymore.
Revision 1.46 / (download) - annotate - [select for diffs], Mon Feb 26 09:20:52 2007 UTC (2 years, 4 months ago) by yamt
Branch: MAIN
CVS Tags: yamt-idlelwp-base8,
thorpej-atomic-base,
thorpej-atomic,
reinoud-bufcleanup,
nick-csl-alignment-base,
mjf-ufs-trans-base,
mjf-ufs-trans,
ad-audiomp-base,
ad-audiomp
Branch point for: vmlocking,
nick-csl-alignment
Changes since 1.45: +6 -1
lines
Diff to previous 1.45 (colored)
implement priority inheritance.
Revision 1.44.6.1 / (download) - annotate - [select for diffs], Sat Sep 9 02:59:42 2006 UTC (2 years, 9 months ago) by rpaulo
Branch: rpaulo-netinet-merge-pcb
Changes since 1.44: +10 -1
lines
Diff to previous 1.44 (colored) next main 1.45 (colored)
sync with head
Revision 1.41.2.1 / (download) - annotate - [select for diffs], Wed Jun 21 15:12:03 2006 UTC (3 years ago) by yamt
Branch: yamt-lazymbuf
Changes since 1.41: +60 -4
lines
Diff to previous 1.41 (colored)
sync with head.
Revision 1.44.8.1 / (download) - annotate - [select for diffs], Sat Apr 22 11:40:19 2006 UTC (3 years, 2 months ago) by simonb
Branch: simonb-timecounters
CVS Tags: simonb-timcounters-final
Changes since 1.44: +10 -1
lines
Diff to previous 1.44 (colored) next main 1.45 (colored)
Sync with head.
Revision 1.44.12.1 / (download) - annotate - [select for diffs], Wed Apr 19 04:36:02 2006 UTC (3 years, 2 months ago) by elad
Branch: elad-kernelauth
Changes since 1.44: +10 -1
lines
Diff to previous 1.44 (colored) next main 1.45 (colored)
sync with head.
Revision 1.44.10.1 / (download) - annotate - [select for diffs], Mon Mar 13 09:07:43 2006 UTC (3 years, 3 months ago) by yamt
Branch: yamt-pdpolicy
Changes since 1.44: +10 -1
lines
Diff to previous 1.44 (colored) next main 1.45 (colored)
sync with head.
Revision 1.45 / (download) - annotate - [select for diffs], Tue Mar 7 17:56:00 2006 UTC (3 years, 3 months ago) by pooka
Branch: MAIN
CVS Tags: yamt-splraiseipl-base5,
yamt-splraiseipl-base4,
yamt-splraiseipl-base3,
yamt-splraiseipl-base2,
yamt-splraiseipl-base,
yamt-splraiseipl,
yamt-pdpolicy-base9,
yamt-pdpolicy-base8,
yamt-pdpolicy-base7,
yamt-pdpolicy-base6,
yamt-pdpolicy-base5,
yamt-pdpolicy-base4,
yamt-pdpolicy-base3,
yamt-pdpolicy-base2,
simonb-timecounters-base,
rpaulo-netinet-merge-pcb-base,
post-newlock2-merge,
peter-altq-base,
peter-altq,
newlock2-nbase,
newlock2-base,
newlock2,
netbsd-4-base,
gdamore-uart-base,
gdamore-uart,
elad-kernelauth-base,
chap-midi-nbase,
chap-midi-base,
chap-midi,
abandoned-netbsd-4-base,
abandoned-netbsd-4
Branch point for: yamt-idlelwp,
wrstuden-fixsa,
netbsd-4
Changes since 1.44: +10 -1
lines
Diff to previous 1.44 (colored)
add CIRCLEQ_LOOP_{NEXT,PREV}(), as discussed (briefly) a while ago
on tech-userlevel
Revision 1.33.6.6 / (download) - annotate - [select for diffs], Sun Dec 11 10:29:36 2005 UTC (3 years, 6 months ago) by christos
Branch: ktrace-lwp
Changes since 1.33.6.5: +3 -3
lines
Diff to previous 1.33.6.5 (colored) to branchpoint 1.33 (colored) next main 1.34 (colored)
Sync with head.
Revision 1.44 / (download) - annotate - [select for diffs], Fri Nov 11 15:04:04 2005 UTC (3 years, 7 months ago) by yamt
Branch: MAIN
CVS Tags: yamt-uio_vmspace-base5,
yamt-uio_vmspace,
yamt-readahead-pervnode,
yamt-readahead-perfile,
yamt-readahead-base3,
yamt-readahead-base2,
yamt-readahead-base,
yamt-readahead,
yamt-pdpolicy-base,
ktrace-lwp-base
Branch point for: yamt-pdpolicy,
simonb-timecounters,
rpaulo-netinet-merge-pcb,
elad-kernelauth
Changes since 1.43: +3 -3
lines
Diff to previous 1.43 (colored)
CIRCLEQ_FOREACH/CIRCLEQ_FOREACH_REVERSE: allow to iterate const circleq.
Revision 1.33.6.5 / (download) - annotate - [select for diffs], Thu Nov 10 14:12:12 2005 UTC (3 years, 7 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.33.6.4: +57 -8
lines
Diff to previous 1.33.6.4 (colored) to branchpoint 1.33 (colored)
Sync with HEAD. Here we go again...
Revision 1.43 / (download) - annotate - [select for diffs], Sun Oct 2 15:34:42 2005 UTC (3 years, 9 months ago) by chs
Branch: MAIN
CVS Tags: yamt-vop-base3,
yamt-vop-base2,
yamt-vop-base,
yamt-vop,
thorpej-vnode-attr-base,
thorpej-vnode-attr
Changes since 1.42: +48 -1
lines
Diff to previous 1.42 (colored)
add QUEUEDEBUG for CIRCLEQ.
Revision 1.42 / (download) - annotate - [select for diffs], Wed Jul 13 15:08:24 2005 UTC (3 years, 11 months ago) by wiz
Branch: MAIN
Changes since 1.41: +2 -2
lines
Diff to previous 1.41 (colored)
Remove duplicate "only". Reported by Giorgos Keramidas in PR 30738.
Revision 1.41 / (download) - annotate - [select for diffs], Sun May 29 21:14:40 2005 UTC (4 years, 1 month ago) by christos
Branch: MAIN
Branch point for: yamt-lazymbuf
Changes since 1.40: +9 -7
lines
Diff to previous 1.40 (colored)
Add an internal _TAILQ macro that allows us to be explicit about volatile qualifiers and use it in the lock case. This will help us clean the XXX volatile cast-aways in kern_lock.c
Revision 1.39.4.1 / (download) - annotate - [select for diffs], Fri Apr 29 11:29:38 2005 UTC (4 years, 2 months ago) by kent
Branch: kent-audio2
Changes since 1.39: +3 -3
lines
Diff to previous 1.39 (colored) next main 1.40 (colored)
sync with -current
Revision 1.39.6.1 / (download) - annotate - [select for diffs], Sat Mar 19 08:36:52 2005 UTC (4 years, 3 months ago) by yamt
Branch: yamt-km
Changes since 1.39: +3 -3
lines
Diff to previous 1.39 (colored) next main 1.40 (colored)
sync with head. xen and whitespace. xen part is not finished.
Revision 1.33.6.4 / (download) - annotate - [select for diffs], Fri Mar 4 16:54:23 2005 UTC (4 years, 4 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.33.6.3: +3 -3
lines
Diff to previous 1.33.6.3 (colored) to branchpoint 1.33 (colored)
Sync with HEAD. Hi Perry!
Revision 1.40 / (download) - annotate - [select for diffs], Sat Feb 26 22:25:34 2005 UTC (4 years, 4 months ago) by perry
Branch: MAIN
CVS Tags: yamt-km-base4,
yamt-km-base3,
netbsd-3-base,
netbsd-3-1-RELEASE,
netbsd-3-1-RC4,
netbsd-3-1-RC3,
netbsd-3-1-RC2,
netbsd-3-1-RC1,
netbsd-3-1-1-RELEASE,
netbsd-3-1,
netbsd-3-0-RELEASE,
netbsd-3-0-RC6,
netbsd-3-0-RC5,
netbsd-3-0-RC4,
netbsd-3-0-RC3,
netbsd-3-0-RC2,
netbsd-3-0-RC1,
netbsd-3-0-3-RELEASE,
netbsd-3-0-2-RELEASE,
netbsd-3-0-1-RELEASE,
netbsd-3-0,
netbsd-3,
kent-audio2-base
Changes since 1.39: +3 -3
lines
Diff to previous 1.39 (colored)
nuke trailing whitespace
Revision 1.33.6.3 / (download) - annotate - [select for diffs], Tue Sep 21 13:38:49 2004 UTC (4 years, 9 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.33.6.2: +1 -1
lines
Diff to previous 1.33.6.2 (colored) to branchpoint 1.33 (colored)
Fix the sync with head I botched.
Revision 1.33.6.2 / (download) - annotate - [select for diffs], Sat Sep 18 14:56:30 2004 UTC (4 years, 9 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.33.6.1: +0 -0
lines
Diff to previous 1.33.6.1 (colored) to branchpoint 1.33 (colored)
Sync with HEAD.
Revision 1.33.6.1 / (download) - annotate - [select for diffs], Tue Aug 3 10:56:29 2004 UTC (4 years, 11 months ago) by skrll
Branch: ktrace-lwp
Changes since 1.33: +98 -101
lines
Diff to previous 1.33 (colored)
Sync with HEAD
Revision 1.39 / (download) - annotate - [select for diffs], Sun Apr 18 14:25:34 2004 UTC (5 years, 2 months ago) by lukem
Branch: MAIN
CVS Tags: yamt-km-base2,
yamt-km-base,
matt-timespec,
kent-audio1-beforemerge,
kent-audio1-base,
kent-audio1
Branch point for: yamt-km,
kent-audio2
Changes since 1.38: +29 -21
lines
Diff to previous 1.38 (colored)
Consistently arrange order of definitions for each type. Specifically: * move SLIST_EMPTY, SLIST_FIRST, SLIST_NEXT, SLIST_FOREACH further down. * remove duplicate definition of SLIST_NEXT. * move TAILQ_FOREACH and TAILQ_FOREACH_REVERSE further up. * add more comments. * tweak whitespace.
Revision 1.38 / (download) - annotate - [select for diffs], Sun Apr 18 14:12:05 2004 UTC (5 years, 2 months ago) by lukem
Branch: MAIN
Changes since 1.37: +75 -75
lines
Diff to previous 1.37 (colored)
consistently use '#define<TAB>'
Revision 1.37 / (download) - annotate - [select for diffs], Tue Mar 23 10:50:31 2004 UTC (5 years, 3 months ago) by he
Branch: MAIN
CVS Tags: netbsd-2-base,
netbsd-2-1-RELEASE,
netbsd-2-1-RC6,
netbsd-2-1-RC5,
netbsd-2-1-RC4,
netbsd-2-1-RC3,
netbsd-2-1-RC2,
netbsd-2-1-RC1,
netbsd-2-1,
netbsd-2-0-base,
netbsd-2-0-RELEASE,
netbsd-2-0-RC5,
netbsd-2-0-RC4,
netbsd-2-0-RC3,
netbsd-2-0-RC2,
netbsd-2-0-RC1,
netbsd-2-0-3-RELEASE,
netbsd-2-0-2-RELEASE,
netbsd-2-0-1-RELEASE,
netbsd-2-0,
netbsd-2
Changes since 1.36: +1 -5
lines
Diff to previous 1.36 (colored)
Undo last, it has unintended consequences (<sys/systm.h> gets pulled in too early in <sys/param.h>, causing clockframe/intrframe mixup on i386).
Revision 1.36 / (download) - annotate - [select for diffs], Tue Mar 23 09:51:48 2004 UTC (5 years, 3 months ago) by he
Branch: MAIN
Changes since 1.35: +5 -1
lines
Diff to previous 1.35 (colored)
If QUEUEDEBUG is defined, we need to pull in <sys/systm.h> in order to make the panic() prototype visible.
Revision 1.35 / (download) - annotate - [select for diffs], Thu Feb 26 01:20:47 2004 UTC (5 years, 4 months ago) by wiz
Branch: MAIN
Changes since 1.34: +1 -8
lines
Diff to previous 1.34 (colored)
Fix pasto, from when STAILQ* was added. Closes PR 24557 by Ron Roskens.
Revision 1.34 / (download) - annotate - [select for diffs], Thu Aug 7 16:34:11 2003 UTC (5 years, 10 months ago) by agc
Branch: MAIN
Changes since 1.33: +2 -6
lines
Diff to previous 1.33 (colored)
Move UCB-licensed code from 4-clause to 3-clause licence. Patches provided by Joel Baker in PR 22364, verified by myself.
Revision 1.26.2.5 / (download) - annotate - [select for diffs], Wed Dec 11 06:50:07 2002 UTC (6 years, 6 months ago) by thorpej
Branch: nathanw_sa
CVS Tags: nathanw_sa_end
Changes since 1.26.2.4: +79 -0
lines
Diff to previous 1.26.2.4 (colored) to branchpoint 1.26 (colored) next main 1.27 (colored)
Sync with HEAD.
Revision 1.33 / (download) - annotate - [select for diffs], Fri Dec 6 22:23:34 2002 UTC (6 years, 6 months ago) by fvdl
Branch: MAIN
CVS Tags: nathanw_sa_before_merge,
nathanw_sa_base,
gmcgarry_ucred_base,
gmcgarry_ucred,
gmcgarry_ctxsw_base,
gmcgarry_ctxsw,
fvdl_fs64_base
Branch point for: ktrace-lwp
Changes since 1.32: +80 -1
lines
Diff to previous 1.32 (colored)
Add STAILQ_*. Really the same as SIMPLEQ, but this syncs the API with FreeBSD.
Revision 1.26.2.4 / (download) - annotate - [select for diffs], Mon Nov 11 22:16:34 2002 UTC (6 years, 7 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.26.2.3: +8 -1
lines
Diff to previous 1.26.2.3 (colored) to branchpoint 1.26 (colored)
Catch up to -current
Revision 1.32 / (download) - annotate - [select for diffs], Tue Oct 22 04:50:38 2002 UTC (6 years, 8 months ago) by chs
Branch: MAIN
CVS Tags: kqueue-beforemerge,
kqueue-aftermerge
Changes since 1.31: +8 -1
lines
Diff to previous 1.31 (colored)
add another QUEUEDEBUG check: in TAILQ_REMOVE(), if the element we're removing has no next element, verify that the queue head agrees that the current element is the last one. (this is how I found the recent ppc pmap bugs).
Revision 1.30.2.1 / (download) - annotate - [select for diffs], Sun Jun 23 17:51:59 2002 UTC (7 years ago) by jdolecek
Branch: kqueue
Changes since 1.30: +16 -3
lines
Diff to previous 1.30 (colored) next main 1.31 (colored)
catch up with -current on kqueue branch
Revision 1.30.14.1 / (download) - annotate - [select for diffs], Thu Jun 20 15:53:03 2002 UTC (7 years ago) by gehenna
Branch: gehenna-devsw
Changes since 1.30: +16 -3
lines
Diff to previous 1.30 (colored) next main 1.31 (colored)
catch up with -current.
Revision 1.26.2.3 / (download) - annotate - [select for diffs], Thu Jun 20 03:50:15 2002 UTC (7 years ago) by nathanw
Branch: nathanw_sa
Changes since 1.26.2.2: +16 -3
lines
Diff to previous 1.26.2.2 (colored) to branchpoint 1.26 (colored)
Catch up to -current.
Revision 1.31 / (download) - annotate - [select for diffs], Sat Jun 1 23:51:05 2002 UTC (7 years, 1 month ago) by lukem
Branch: MAIN
CVS Tags: kqueue-base,
gehenna-devsw-base
Changes since 1.30: +16 -3
lines
Diff to previous 1.30 (colored)
SIMPLEQ rototill: - implement SIMPLEQ_REMOVE(head, elm, type, field). whilst it's O(n), this mirrors the functionality of SLIST_REMOVE() (the other singly-linked list type) and FreeBSD's STAILQ_REMOVE() - remove the unnecessary elm arg from SIMPLEQ_REMOVE_HEAD(). this mirrors the functionality of SLIST_REMOVE_HEAD() (the other singly-linked list type) and FreeBSD's STAILQ_REMOVE_HEAD() - remove notes about SIMPLEQ not supporting arbitrary element removal - use SIMPLEQ_FOREACH() instead of home-grown for loops - use SIMPLEQ_EMPTY() appropriately - use SIMPLEQ_*() instead of accessing sqh_first,sqh_last,sqe_next directly - reorder manual page; be consistent about how the types are listed - other minor cleanups
Revision 1.26.2.2 / (download) - annotate - [select for diffs], Fri Aug 24 00:13:08 2001 UTC (7 years, 10 months ago) by nathanw
Branch: nathanw_sa
Changes since 1.26.2.1: +5 -5
lines
Diff to previous 1.26.2.1 (colored) to branchpoint 1.26 (colored)
Catch up with -current.
Revision 1.30 / (download) - annotate - [select for diffs], Fri Jun 22 06:18:22 2001 UTC (8 years ago) by chs
Branch: MAIN
CVS Tags: thorpej-mips-cache-base,
thorpej-mips-cache,
thorpej-devvp-base3,
thorpej-devvp-base2,
thorpej-devvp-base,
thorpej-devvp,
pre-chs-ubcperf,
post-chs-ubcperf,
newlock-base,
newlock,
netbsd-1-6-base,
netbsd-1-6-RELEASE,
netbsd-1-6-RC3,
netbsd-1-6-RC2,
netbsd-1-6-RC1,
netbsd-1-6-PATCH002-RELEASE,
netbsd-1-6-PATCH002-RC4,
netbsd-1-6-PATCH002-RC3,
netbsd-1-6-PATCH002-RC2,
netbsd-1-6-PATCH002-RC1,
netbsd-1-6-PATCH002,
netbsd-1-6-PATCH001-RELEASE,
netbsd-1-6-PATCH001-RC3,
netbsd-1-6-PATCH001-RC2,
netbsd-1-6-PATCH001-RC1,
netbsd-1-6-PATCH001,
netbsd-1-6,
ifpoll-base,
ifpoll,
eeh-devprop-base,
eeh-devprop
Branch point for: kqueue,
gehenna-devsw
Changes since 1.29: +5 -5
lines
Diff to previous 1.29 (colored)
for QUEUEDEBUG_*_POSTREMOVE(), set the pointers to 1 instead of 0 so that we'll crash instead of thinking we're at the end of the list.
Revision 1.26.2.1 / (download) - annotate - [select for diffs], Thu Jun 21 20:09:52 2001 UTC (8 years ago) by nathanw
Branch: nathanw_sa
Changes since 1.26: +27 -17
lines
Diff to previous 1.26 (colored)
Catch up to -current.
Revision 1.29 / (download) - annotate - [select for diffs], Sun May 27 01:36:47 2001 UTC (8 years, 1 month ago) by chs
Branch: MAIN
Changes since 1.28: +18 -8
lines
Diff to previous 1.28 (colored)
more fun with QUEUEDEBUG: include the file and line number in panics and set the list pointers in elements to NULL after removing the element from the list.
Revision 1.28 / (download) - annotate - [select for diffs], Sat May 12 20:18:23 2001 UTC (8 years, 1 month ago) by chs
Branch: MAIN
Changes since 1.27: +10 -10
lines
Diff to previous 1.27 (colored)
undo the parts of the last revision which broke QUEUEDEBUG builds.
Revision 1.27 / (download) - annotate - [select for diffs], Fri May 11 05:13:57 2001 UTC (8 years, 1 month ago) by lukem
Branch: MAIN
Changes since 1.26: +14 -14
lines
Diff to previous 1.26 (colored)
add missing parenthesis in macros, detected by lint and debugged by todd.
Revision 1.21.2.1 / (download) - annotate - [select for diffs], Sun May 6 15:07:45 2001 UTC (8 years, 2 months ago) by he
Branch: netbsd-1-5
CVS Tags: netbsd-1-5-PATCH003,
netbsd-1-5-PATCH002,
netbsd-1-5-PATCH001
Changes since 1.21: +92 -5
lines
Diff to previous 1.21 (colored) next main 1.22 (colored)
Pull up revisions 1.22-1.26 (requested by he): Add new powerhook argument values, PWR_SOFTSUSPEND, PWR_SOFTSTANDBY and PWR_SOFTRESUME. Apm calls powerhook with the values in normal interrupt priority level while others are protected with splhigh(). Here: Add CIRCLEQ operations and other changes; sync with head of trunk.
Revision 1.18.8.2 / (download) - annotate - [select for diffs], Wed Nov 22 16:06:40 2000 UTC (8 years, 7 months ago) by bouyer
Branch: thorpej_scsipi
Changes since 1.18.8.1: +49 -2
lines
Diff to previous 1.18.8.1 (colored) to branchpoint 1.18 (colored) next main 1.19 (colored)
Sync with HEAD.
Revision 1.18.8.1 / (download) - annotate - [select for diffs], Mon Nov 20 18:11:34 2000 UTC (8 years, 7 months ago) by bouyer
Branch: thorpej_scsipi
Changes since 1.18: +112 -10
lines
Diff to previous 1.18 (colored)
Update thorpej_scsipi to -current as of a month ago
Revision 1.26 / (download) - annotate - [select for diffs], Sun Nov 19 06:00:57 2000 UTC (8 years, 7 months ago) by chs
Branch: MAIN
CVS Tags: thorpej_scsipi_nbase,
thorpej_scsipi_beforemerge,
thorpej_scsipi_base
Branch point for: nathanw_sa
Changes since 1.25: +49 -2
lines
Diff to previous 1.25 (colored)
verify that a LIST or TAILQ isn't already corrupted before modifying it. enable with "options QUEUEDEBUG".
Revision 1.25 / (download) - annotate - [select for diffs], Tue Oct 3 00:19:19 2000 UTC (8 years, 9 months ago) by assar
Branch: MAIN
Changes since 1.24: +3 -3
lines
Diff to previous 1.24 (colored)
repair parentheseis error in TAILQ_FOREACH_REVERSE. see PR kern/11117
Revision 1.24 / (download) - annotate - [select for diffs], Wed Jul 26 12:19:40 2000 UTC (8 years, 11 months ago) by augustss
Branch: MAIN
Changes since 1.23: +2 -2
lines
Diff to previous 1.23 (colored)
Fix CIRCLEQ_FOREACH so that it actually works. I guess noone has used this macro either.
Revision 1.23 / (download) - annotate - [select for diffs], Wed Jul 26 11:01:01 2000 UTC (8 years, 11 months ago) by augustss
Branch: MAIN
Changes since 1.22: +2 -2
lines
Diff to previous 1.22 (colored)
Make parens match in CIRCLEQ_FOREACH_REVERSE; I guess this macro has never been used before.
Revision 1.22 / (download) - annotate - [select for diffs], Thu Jul 20 03:36:38 2000 UTC (8 years, 11 months ago) by deberg
Branch: MAIN
Changes since 1.21: +44 -4
lines
Diff to previous 1.21 (colored)
add *_FOREACH() and {TAILQ,CIRCLEQ}_FOREACH_REVERSE() macros from
freebsd. fix some of the comments up top.
Revision 1.20.2.1 / (download) - annotate - [select for diffs], Thu Jun 22 17:10:26 2000 UTC (9 years ago) by minoura
Branch: minoura-xpg4dl
Changes since 1.20: +6 -7
lines
Diff to previous 1.20 (colored) next main 1.21 (colored)
Sync w/ netbsd-1-5-base.
Revision 1.21 / (download) - annotate - [select for diffs], Sat May 27 22:17:54 2000 UTC (9 years, 1 month ago) by mycroft
Branch: MAIN
CVS Tags: netbsd-1-5-base,
netbsd-1-5-RELEASE,
netbsd-1-5-BETA2,
netbsd-1-5-BETA,
netbsd-1-5-ALPHA2
Branch point for: netbsd-1-5
Changes since 1.20: +6 -7
lines
Diff to previous 1.20 (colored)
Add *_EMPTY() and SLIST_NEXT().
Revision 1.20 / (download) - annotate - [select for diffs], Wed Mar 15 02:03:11 2000 UTC (9 years, 3 months ago) by fvdl
Branch: MAIN
CVS Tags: minoura-xpg4dl-base
Branch point for: minoura-xpg4dl
Changes since 1.19: +60 -1
lines
Diff to previous 1.19 (colored)
Add SLIST.
Revision 1.18.14.1 / (download) - annotate - [select for diffs], Mon Dec 27 18:36:35 1999 UTC (9 years, 6 months ago) by wrstuden
Branch: wrstuden-devbsize
Changes since 1.18: +7 -3
lines
Diff to previous 1.18 (colored) next main 1.19 (colored)
Pull up to last week's -current.
Revision 1.19 / (download) - annotate - [select for diffs], Mon Nov 15 18:49:12 1999 UTC (9 years, 7 months ago) by fvdl
Branch: MAIN
CVS Tags: wrstuden-devbsize-base,
wrstuden-devbsize-19991221,
chs-ubc2-newbase
Changes since 1.18: +7 -3
lines
Diff to previous 1.18 (colored)
Add Kirk McKusick's soft updates code to the trunk. Not enabled by default, as the copyright on the main file (ffs_softdep.c) is such that is has been put into gnusrc. options SOFTDEP will pull this in. This code also contains the trickle syncer. Bump version number to 1.4O
Revision 1.18.10.1 / (download) - annotate - [select for diffs], Tue Oct 19 12:50:30 1999 UTC (9 years, 8 months ago) by fvdl
Branch: fvdl-softdep
Changes since 1.18: +7 -3
lines
Diff to previous 1.18 (colored) next main 1.19 (colored)
Bring in Kirk McKusick's FFS softdep code on a branch.
Revision 1.18 / (download) - annotate - [select for diffs], Fri Jan 29 01:05:03 1999 UTC (10 years, 5 months ago) by tv
Branch: MAIN
CVS Tags: netbsd-1-4-base,
netbsd-1-4-RELEASE,
netbsd-1-4-PATCH003,
netbsd-1-4-PATCH002,
netbsd-1-4-PATCH001,
netbsd-1-4,
kame_14_19990705,
kame_14_19990628,
kame_141_19991130,
kame,
fvdl-softdep-base,
comdex-fall-1999-base,
comdex-fall-1999,
chs-ubc2-base,
chs-ubc2
Branch point for: wrstuden-devbsize,
thorpej_scsipi,
fvdl-softdep
Changes since 1.17: +2 -2
lines
Diff to previous 1.17 (colored)
Fix comment: new elements can be added to a simpleq after an existing element, but not before.
Revision 1.17 / (download) - annotate - [select for diffs], Wed Dec 9 12:26:58 1998 UTC (10 years, 6 months ago) by christos
Branch: MAIN
CVS Tags: kenh-if-detach-base,
kenh-if-detach
Changes since 1.16: +23 -23
lines
Diff to previous 1.16 (colored)
Add /*CONSTCOND*/
Revision 1.16.4.1 / (download) - annotate - [select for diffs], Mon Nov 9 06:06:35 1998 UTC (10 years, 7 months ago) by chs
Branch: chs-ubc
Changes since 1.16: +2 -1
lines
Diff to previous 1.16 (colored) next main 1.17 (colored)
initial snapshot. lots left to do.
Revision 1.16 / (download) - annotate - [select for diffs], Fri Jul 10 23:28:31 1998 UTC (10 years, 11 months ago) by nathanw
Branch: MAIN
CVS Tags: eeh-paddr_t-base,
eeh-paddr_t,
chs-ubc-base
Branch point for: chs-ubc
Changes since 1.15: +3 -3
lines
Diff to previous 1.15 (colored)
tyop and speeling.
Revision 1.15 / (download) - annotate - [select for diffs], Fri May 15 12:22:24 1998 UTC (11 years, 1 month ago) by lukem
Branch: MAIN
Changes since 1.14: +3 -3
lines
Diff to previous 1.14 (colored)
actually, there's *four* types of queue data structures...
Revision 1.13.10.1 / (download) - annotate - [select for diffs], Sat May 9 04:43:23 1998 UTC (11 years, 1 month ago) by mycroft
Branch: netbsd-1-3
CVS Tags: netbsd-1-3-PATCH003-CANDIDATE2,
netbsd-1-3-PATCH003-CANDIDATE1,
netbsd-1-3-PATCH003-CANDIDATE0,
netbsd-1-3-PATCH003,
netbsd-1-3-PATCH002
Changes since 1.13: +33 -1
lines
Diff to previous 1.13 (colored) next main 1.14 (colored)
Sync with trunk.
Revision 1.1.1.2 / (download) - annotate - [select for diffs] (vendor branch), Sun Mar 1 02:13:56 1998 UTC (11 years, 4 months ago) by fvdl
Branch: netbsd,
CSRG
CVS Tags: lite-2
Changes since 1.1.1.1: +22 -8
lines
Diff to previous 1.1.1.1 (colored)
Import 4.4BSD-Lite2
Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Sun Mar 1 02:11:08 1998 UTC (11 years, 4 months ago) by fvdl
Branch: netbsd,
CSRG
CVS Tags: lite-1,
date-03-may-96
Changes since 1.1: +4 -4
lines
Diff to previous 1.1 (colored)
Import 4.4BSD-Lite for reference
Revision 1.14 / (download) - annotate - [select for diffs], Mon Jan 5 06:27:42 1998 UTC (11 years, 6 months ago) by thorpej
Branch: MAIN
Changes since 1.13: +33 -1
lines
Diff to previous 1.13 (colored)
Implement access methods: lists: LIST_FIRST(), LIST_NEXT() simple queues: SIMPLEQ_FIRST(), SIMPLEQ_NEXT() tail queues: TAILQ_FIRST(), TAILQ_NEXT() circular queues: CIRCLEQ_FIRST(), CIRCLEQ_LAST(), CIRCLEQ_NEXT(), CIRCLEQ_PREV()
Revision 1.12.4.1 / (download) - annotate - [select for diffs], Wed Mar 12 21:26:11 1997 UTC (12 years, 3 months ago) by is
Branch: is-newarp
Changes since 1.12: +45 -45
lines
Diff to previous 1.12 (colored) next main 1.13 (colored)
Merge in changes from Trunk
Revision 1.13 / (download) - annotate - [select for diffs], Sat Feb 8 04:47:41 1997 UTC (12 years, 4 months ago) by mrg
Branch: MAIN
CVS Tags: thorpej-signal-base,
thorpej-signal,
netbsd-1-3-base,
netbsd-1-3-RELEASE,
netbsd-1-3-PATCH001,
netbsd-1-3-BETA,
mrg-vm-swap,
marc-pcmcia-bp,
marc-pcmcia-base,
marc-pcmcia,
is-newarp-before-merge,
bouyer-scsipi
Branch point for: netbsd-1-3
Changes since 1.12: +45 -45
lines
Diff to previous 1.12 (colored)
allow queue.h macro's to act as functions.
Revision 1.12 / (download) - annotate - [select for diffs], Tue Oct 1 22:45:06 1996 UTC (12 years, 9 months ago) by cgd
Branch: MAIN
CVS Tags: thorpej-setroot,
is-newarp-base
Branch point for: is-newarp
Changes since 1.11: +14 -2
lines
Diff to previous 1.11 (colored)
add and document *_HEAD_INITIALIZER macros, which provide structure initializers which can be used to initialize list/queue heads at compile time.
Revision 1.11 / (download) - annotate - [select for diffs], Thu May 16 05:17:14 1996 UTC (13 years, 1 month ago) by mycroft
Branch: MAIN
CVS Tags: netbsd-1-2-base,
netbsd-1-2-RELEASE,
netbsd-1-2-PATCH001,
netbsd-1-2-BETA,
netbsd-1-2
Changes since 1.10: +53 -1
lines
Diff to previous 1.10 (colored)
Add a SIMPLEQ type, cloned from TAILQ, but with only a single pointer in each element.
Revision 1.10 / (download) - annotate - [select for diffs], Tue Apr 9 20:55:34 1996 UTC (13 years, 2 months ago) by cgd
Branch: MAIN
Changes since 1.9: +2 -2
lines
Diff to previous 1.9 (colored)
fix extra spaces at ends of lines, etc. (all spacing nits.)
Revision 1.9 / (download) - annotate - [select for diffs], Tue Dec 13 15:04:28 1994 UTC (14 years, 6 months ago) by mycroft
Branch: MAIN
CVS Tags: netbsd-1-1-base,
netbsd-1-1-RELEASE,
netbsd-1-1-PATCH001,
netbsd-1-1
Changes since 1.8: +8 -8
lines
Diff to previous 1.8 (colored)
Sync with CSRG.
Revision 1.8 / (download) - annotate - [select for diffs], Tue Aug 30 03:01:30 1994 UTC (14 years, 10 months ago) by mycroft
Branch: MAIN
Changes since 1.7: +16 -2
lines
Diff to previous 1.7 (colored)
Add {LIST,TAILQ}_INSERT_BEFORE().
Revision 1.7 / (download) - annotate - [select for diffs], Wed Jun 29 06:44:58 1994 UTC (15 years ago) by cgd
Branch: MAIN
CVS Tags: netbsd-1-0-base,
netbsd-1-0-RELEASE,
netbsd-1-0-PATCH1,
netbsd-1-0-PATCH06,
netbsd-1-0-PATCH05,
netbsd-1-0-PATCH04,
netbsd-1-0-PATCH03,
netbsd-1-0-PATCH02,
netbsd-1-0-PATCH0,
netbsd-1-0
Changes since 1.6: +2 -1
lines
Diff to previous 1.6 (colored)
New RCS ID's, take two. they're more aesthecially pleasant, and use 'NetBSD'
Revision 1.6 / (download) - annotate - [select for diffs], Mon Jun 27 19:31:49 1994 UTC (15 years ago) by cgd
Branch: MAIN
Changes since 1.5: +2 -2
lines
Diff to previous 1.5 (colored)
new standard, minimally intrusive ID format
Revision 1.5 / (download) - annotate - [select for diffs], Sat May 21 03:52:06 1994 UTC (15 years, 1 month ago) by cgd
Branch: MAIN
Changes since 1.4: +2 -2
lines
Diff to previous 1.4 (colored)
update to 4.4-Lite; no serious changes
Revision 1.4 / (download) - annotate - [select for diffs], Thu May 19 03:40:29 1994 UTC (15 years, 1 month ago) by mycroft
Branch: MAIN
Changes since 1.3: +2 -1
lines
Diff to previous 1.3 (colored)
Add RCS id.
Revision 1.3 / (download) - annotate - [select for diffs], Thu Feb 10 01:24:50 1994 UTC (15 years, 4 months ago) by cgd
Branch: MAIN
CVS Tags: wnvm,
nvm-base,
nvm
Changes since 1.2: +1 -1
lines
Diff to previous 1.2 (colored)
fix a type; color me stupid
Revision 1.2 / (download) - annotate - [select for diffs], Thu Feb 10 01:22:25 1994 UTC (15 years, 4 months ago) by cgd
Branch: MAIN
Changes since 1.1: +4 -4
lines
Diff to previous 1.1 (colored)
be a little smarter with #defines
Revision 1.1 / (download) - annotate - [select for diffs], Tue Dec 21 01:55:03 1993 UTC (15 years, 6 months ago) by cgd
Branch: MAIN
CVS Tags: magnum-base,
magnum
queue.h from 4.4, from Bostic