Release - 960812
Added the following
oskernel.[ch]
			ACondition - A typical OS supported construct that allows
			a thread to wait for a condition.
			
			AThread - A basic encapsulation of the thread construct.
			
random.[ch]
			Random - A generic random number generator with very even
			distribution, Poisson distribution, and exponential distribution.
			
Release - 960509

Adds the following:
atime.h		Addition of ATime, which is the base for 
			seconds, milliseconds, microseconds, picoseconds,
			minutes, hours, days.
			
			AClock, abstract base class which allows you to delay 
			your process until a particular time, or for a particular 
			time interval.
			
			ASystemClock, concrete implementation of AClock
			
			AStopWatch, just what it sounds like.  More useful
			than the one provided in the BeOS.
			
			ATicker, generates Tick()s at a specified interval, or
			at a specified frequency.  Good for keeping time in games
			and music.

lock.h		PBinaryLock, An abstract base class for locks.
			ASpinLock, a quick and efficient short term locking
			mechanism.
			ASemaphore, ACondition, working on them.
			
measures.h	Similar to the ATime, but for length and other things.
			Currently: ALength, meters, kilometers, centimeters,
			millimeters, micrometers, nanometers.
			 
numbers.h	All sorts of numbers, including SSIS ratios

random.h	Random number generators, but not yet.
 

Release - 9602xx
	
The original release contained:
string				A very basic functional string class
ASequenceOf			Like an array with a different name
ABitSequence		A Sequence of bits
ACharSet			A specialized sequence of bits
AIterator			Iterator over a sequence
AListOf				A list as opposed to a array based sequence
AQueueSequenceOf	A queue based on a fixed size sequence

Searching Routines
	Linear Search	Searches a sequence for an element
	
Sorting Routines
	BubbleSort		Sorting using the slow bubble sort
	SelectionSort	Sorting using selection sort
	InsertionSort	Sorting using insertion sort
	QuickSort		Sorting using the very fast quick sort
