summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Peter McGoron 2022-09-20 01:10:41 -0400
committerGravatar Peter McGoron 2022-09-20 01:10:41 -0400
commitca935a4cc7433a4bd1059480efc0c13b1bc1ffe5 (patch)
tree806261ad7d50073de8d8148da2f480bddd3c7e46
parentadd dummy arm_tag_handler to raw1394 implementation (diff)
add copyright notices; change version to v3.0.0-mcgoron-devv3.0.0-mcgoron-dev
-rw-r--r--ChangeLog6
-rw-r--r--configure.ac2
-rw-r--r--src/eventloop.c1
-rw-r--r--src/fw.c1
-rw-r--r--src/fw.h1
-rw-r--r--src/raw1394.h1
6 files changed, 11 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 4f457c4..e672ffe 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2022-09-20 Peter McGoron <code@mcgoron.com>
+ * Change ARM handler to no longer handle memory automatically
+ (all memory must be managed by the application).
+
+ * Change version to v3.0.0-mcgoron-dev
+
2016-04-03 Stefan Richter <stefanr@s5r6.in-berlin.de>
* configure.ac, Changelog, NEWS: update to version 2.1.2
diff --git a/configure.ac b/configure.ac
index 4eef356..257db2e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,6 +1,6 @@
# process this file with autoconf to get a configure script
-AC_INIT(libraw1394, 2.1.2)
+AC_INIT(libraw1394, 3.0.0-mcgoron-dev)
AC_CONFIG_SRCDIR(src/raw1394.h)
AM_CONFIG_HEADER(config.h)
diff --git a/src/eventloop.c b/src/eventloop.c
index d6d3bd2..f3de7bc 100644
--- a/src/eventloop.c
+++ b/src/eventloop.c
@@ -4,6 +4,7 @@
* Copyright (C) 1999,2000,2001,2002 Andreas Bombe
* 2002 Manfred Weihs <weihs@ict.tuwien.ac.at>
* 2002 Christian Toegel <christian.toegel@gmx.at>
+ * Copyright (C) 2022 Peter McGoron <code@mcgoron.com>
*
* This library is licensed under the GNU Lesser General Public License (LGPL),
* version 2.1 or later. See the file COPYING.LIB in the distribution for
diff --git a/src/fw.c b/src/fw.c
index 27eb8b6..b87bdff 100644
--- a/src/fw.c
+++ b/src/fw.c
@@ -3,6 +3,7 @@
* raw1394.c -- Emulation of the raw1394 API on the fw stack
*
* Copyright (C) 2007 Kristian Hoegsberg <krh@bitplanet.net>
+ * Copyright (C) 2022 Peter McGoron <code@mcgoron.com>
*
* This library is licensed under the GNU Lesser General Public License (LGPL),
* version 2.1 or later. See the file COPYING.LIB in the distribution for
diff --git a/src/fw.h b/src/fw.h
index 2d7d90c..fa06e51 100644
--- a/src/fw.h
+++ b/src/fw.h
@@ -3,6 +3,7 @@
* fw.h -- Internal header file for firewire raw1394 emulation
*
* Copyright (C) 2007 Kristian Hoegsberg <krh@bitplanet.net>
+ * Copyright (C) 2022 Peter McGoron <code@mcgoron.com>
*
* This library is licensed under the GNU Lesser General Public License (LGPL),
* version 2.1 or later. See the file COPYING.LIB in the distribution for
diff --git a/src/raw1394.h b/src/raw1394.h
index e3027fd..4f891f6 100644
--- a/src/raw1394.h
+++ b/src/raw1394.h
@@ -4,6 +4,7 @@
* Copyright (C) 1999-2004 Andreas Bombe, Dan Maas, Manfred Weihs, and
* Christian Toegel
* Copyright (C) 2008 Dan Dennedy <dan@dennedy.org>
+ * Copyright (C) 2022 Peter McGoron <code@mcgoron.com>
*
* This library is licensed under the GNU Lesser General Public License (LGPL),
* version 2.1 or later. See the file COPYING.LIB in the distribution for
dmaas 2-1/+41 git-svn-id: svn://svn.linux1394.org/libraw1394/trunk@104 53a565d1-3bb7-0310-b661-cf11e63c67ab 2003-02-22Updates for new rawiso ioctl interface.Gravatar bencollins 3-37/+125 git-svn-id: svn://svn.linux1394.org/libraw1394/trunk@103 53a565d1-3bb7-0310-b661-cf11e63c67ab 2003-01-15add iso_xmit_sync() and iso_xmit_write(); clean up iso handling a bitGravatar dmaas 5-39/+161 git-svn-id: svn://svn.linux1394.org/libraw1394/trunk@102 53a565d1-3bb7-0310-b661-cf11e63c67ab 2003-01-15implement tag matching for rawiso receptionGravatar dmaas 3-4/+12 git-svn-id: svn://svn.linux1394.org/libraw1394/trunk@101 53a565d1-3bb7-0310-b661-cf11e63c67ab 2003-01-06back out previous commit - don't drop the legacy API just yetGravatar dmaas 6-173/+130 git-svn-id: svn://svn.linux1394.org/libraw1394/trunk@100 53a565d1-3bb7-0310-b661-cf11e63c67ab 2003-01-05emulate legacy ISO reception API on top of new rawiso APIGravatar dmaas 7-131/+174 git-svn-id: svn://svn.linux1394.org/libraw1394/trunk@99 53a565d1-3bb7-0310-b661-cf11e63c67ab 2002-12-24update iso API for multi-channel reception and new packet buffer layoutGravatar dmaas 4-123/+236 git-svn-id: svn://svn.linux1394.org/libraw1394/trunk@98 53a565d1-3bb7-0310-b661-cf11e63c67ab 2002-12-20oops, irq_interval needs to be signedGravatar anonymous 1-1/+1 git-svn-id: svn://svn.linux1394.org/libraw1394/trunk@97 53a565d1-3bb7-0310-b661-cf11e63c67ab 2002-12-20dmaas - renamed exported arm definitions into the raw1394_ namespace; ↵Gravatar anonymous 3-124/+48 brought kernel-raw1394.h back in sync with the kernel version git-svn-id: svn://svn.linux1394.org/libraw1394/trunk@96 53a565d1-3bb7-0310-b661-cf11e63c67ab 2002-12-16rawiso updates:Gravatar dmaas 3-18/+25 - changed return type of rawiso xmit/recv handlers from int to enum raw1394_iso_disposition - added an ioctl (RAW1394_ISO_QUEUE_ACTIVITY) to force an ISO_ACTIVITY event into the queue. This is needed for handling RAW1394_ISO_DEFER, to kick us out of the next read() instead of sleeping forever. - removed references to "8-byte" isochronous header - this is an OHCI-specific implementation detail git-svn-id: svn://svn.linux1394.org/libraw1394/trunk@95 53a565d1-3bb7-0310-b661-cf11e63c67ab 2002-11-18fix cplusplus extern C blockGravatar ddennedy 1-4/+4 git-svn-id: svn://svn.linux1394.org/libraw1394/trunk@94 53a565d1-3bb7-0310-b661-cf11e63c67ab 2002-11-18merged rawiso branchGravatar ddennedy 7-6/+488 git-svn-id: svn://svn.linux1394.org/libraw1394/trunk@93 53a565d1-3bb7-0310-b661-cf11e63c67ab