diff options
| author | 2006-04-09 01:26:41 +0000 | |
|---|---|---|
| committer | 2006-04-09 01:26:41 +0000 | |
| commit | 9c74e4a2956e38045b825e43e1a4b7ba1620dfc2 (patch) | |
| tree | 69a8a9a41c2f494f941584f6536b4f1269e06fe5 /src/raw1394_private.h | |
| parent | Added a new callback response for iso_xmit handlers: RAW1394_ISO_AGAIN. (diff) | |
remove memory allocations for isochronous operations from the libraw1394 event loop to make them more respectful of realtime applications
git-svn-id: svn://svn.linux1394.org/libraw1394/trunk@162 53a565d1-3bb7-0310-b661-cf11e63c67ab
Diffstat (limited to 'src/raw1394_private.h')
| -rw-r--r-- | src/raw1394_private.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/raw1394_private.h b/src/raw1394_private.h index 27683f8..8eb2c76 100644 --- a/src/raw1394_private.h +++ b/src/raw1394_private.h @@ -43,7 +43,8 @@ struct raw1394_handle { raw1394_iso_xmit_handler_t iso_xmit_handler; raw1394_iso_recv_handler_t iso_recv_handler; - quadlet_t buffer[HBUF_SIZE/4]; /* 2048 */ + quadlet_t buffer[HBUF_SIZE/4]; /* 2048 */ + void *iso_packet_infos; /* actually a struct raw1394_iso_packet_info* */ }; struct sync_cb_data { |
