Subject: CVS commit: syssrc
To: None <source-changes@netbsd.org>
From: Jason R Thorpe <thorpej@netbsd.org>
List: source-changes
Date: 03/22/2000 22:31:53
Module Name:	syssrc
Committed By:	thorpej
Date:		Thu Mar 23 06:31:53 UTC 2000

Modified Files:
	syssrc/sys/sys: callout.h kernel.h proc.h systm.h tty.h

Log Message:
New callout mechanism with two major improvements over the old
timeout()/untimeout() API:
- Clients supply callout handle storage, thus eliminating problems of
  resource allocation.
- Insertion and removal of callouts is constant time, important as
  this facility is used quite a lot in the kernel.

The old timeout()/untimeout() API has been removed from the kernel.


To generate a diff of this commit:
cvs rdiff -r1.12 -r1.13 syssrc/sys/sys/callout.h
cvs rdiff -r1.15 -r1.16 syssrc/sys/sys/kernel.h
cvs rdiff -r1.86 -r1.87 syssrc/sys/sys/proc.h
cvs rdiff -r1.104 -r1.105 syssrc/sys/sys/systm.h
cvs rdiff -r1.47 -r1.48 syssrc/sys/sys/tty.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.