libraw1394 fork
This repository has been archived on 2022-09-20. You can view files and clone it, but cannot push or open issues or pull requests.
Go to file
abombe eb99eec7ab - Added FCP register addresses
- Added #ifdef for multiple inclusion


git-svn-id: svn://svn.linux1394.org/libraw1394/trunk@3 53a565d1-3bb7-0310-b661-cf11e63c67ab
1999-12-18 16:02:15 +00:00
debian Initial revision 1999-12-02 23:07:38 +00:00
src - Added FCP register addresses 1999-12-18 16:02:15 +00:00
AUTHORS Initial revision 1999-12-02 23:07:38 +00:00
ChangeLog Initial revision 1999-12-02 23:07:38 +00:00
INSTALL Initial revision 1999-12-02 23:07:38 +00:00
Makefile.am Initial revision 1999-12-02 23:07:38 +00:00
NEWS Initial revision 1999-12-02 23:07:38 +00:00
README Initial revision 1999-12-02 23:07:38 +00:00
configure.in Initial revision 1999-12-02 23:07:38 +00:00

README

				   libraw1394
				   ==========

1. About libraw1394

	libraw1394 is the only supported interface to the kernel side raw1394 of
the Linux IEEE-1394 subsystem, which provides direct access to the connected
1394 buses to user space.  Through libraw1394/raw1394, applications can directly
send to and receive from other nodes without requiring a kernel driver for the
protocol in question.

	The reason for making a library the interface to the kernel is to avoid
a program dependancy on the kernel version, which would hinder development and
optimization of raw1394.  If development changed the protocol and made it
incompatible with previous versions only the libraw1394 has to be upgraded to
match the kernel version (instead of all applications).


2. Copyleft

	libraw1394 itself is licensed under the Lesser General Public License
(short LGPL, see file COPYING.LIB in the source distribution).  Other files in
the source archives not belonging to but being part of the build procedure of
libraw1394 are under their own licenses, as stated at the top of the individual
files.


3. API documentation

	There is currently no external document describing the library functions,
but you can find documentation for all functions in the header file raw1394.h.


4. Multithreading

	This library should be multithreadable with the restriction that one
raw1394handle_t may be used only within a single thread.  Multiple threads
operating on the same handle would royally mess up the kernel-user protocol.
Simply use separate handles for each thread in which you need to use libraw1394.


5. Maintainer

	Maintainer of libraw1394 is currently Andreas Bombe.  Send suggestions,
bug reports and fixes to andreas.bombe@munich.netsurf.de.  See the file AUTHORS
for a complete list of contributors to libraw1394.


1999-11-23  Andreas Bombe