Files
epics-base/src/cas
Jeff Hill 36b70e243f fixed problem where send was not always rearmed if this
was indirectly necessary in the send callback because
in this callback the code considered sends to be still armed
until the send callback completed
1998-10-23 00:27:15 +00:00
..
1998-07-08 15:50:29 +00:00
1998-09-24 20:53:54 +00:00
1998-09-24 20:53:54 +00:00
1996-08-05 19:30:49 +00:00
1996-06-20 00:28:19 +00:00
1996-06-20 00:28:19 +00:00
1996-06-28 15:20:11 +00:00
doc
1996-11-22 19:41:05 +00:00

$Id$

README file for the EPICS Channel Access Server

Author Jeff Hill johill@lanl.gov 

$Log$
Revision 1.1.1.1  1996/06/20 00:28:06  jhill
ca server installation


Directory Structure
-------------------
o example - 		example server tool
o generic - 		generic server lib source code 
o os -			os dependnet server lib source code
o io -			io dependnet server lib source code
o build/singleThread -	server lib object code for single threaded use 
o build/multiThread -	server lib object code for multi threaded use 

Internal Source Code Naming Conventions
---------------------------------------
o API class X will almost always have associated internal (usually 
	private base) class named XI
o for class X there will 
	o sometimes be X.h - the class declaration (and simple inlines)
	o sometimes be XIL.h - complex inline functions (that will not
		compile unless the compiler has seen
		the declarations of other classes)
	o be X.cc - all other source code for the class