}
}
-#if 0
-/*
- this function should be called by your interrupt routine
- at the end of acquisition
- */
-void comedi_done(comedi_device *dev,comedi_subdevice *s)
-{
- comedi_event(dev,s,COMEDI_CB_EOA);
-}
-
-/*
- this function should be called by your interrupt routine
- at errors causing termination of acquisition
- */
-void comedi_error_done(comedi_device *dev,comedi_subdevice *s)
-{
- comedi_event(dev,s,COMEDI_CB_ERROR|COMEDI_CB_EOA);
-}
-
-/*
- this function should be called by your interrupt routine
- at convenient block sizes
- */
-void comedi_bufcheck(comedi_device *dev,comedi_subdevice *s)
-{
- comedi_event(dev,s,COMEDI_CB_BLOCK);
-}
-
-/*
- this function should be called by your interrupt routine
- at end-of-scan events
- */
-void comedi_eos(comedi_device *dev,comedi_subdevice *s)
-{
- comedi_event(dev,s,COMEDI_CB_EOS);
-}
-
-/*
- this function should be called by your interrupt routine
- at buffer rollover events
- */
-void comedi_eobuf(comedi_device *dev,comedi_subdevice *s)
-{
- comedi_event(dev,s,COMEDI_CB_EOBUF);
-}
-#endif
-
-