added read/write wait_queues and read/write subdevices
authorDavid Schleef <ds@schleef.org>
Wed, 11 Oct 2000 01:00:07 +0000 (01:00 +0000)
committerDavid Schleef <ds@schleef.org>
Wed, 11 Oct 2000 01:00:07 +0000 (01:00 +0000)
comedi/comedi_module.h

index 094681900cda397bf51350acb5c24a657b3d3977..719b26d8f1acbd4747a37a502396a63cee63bb9d 100644 (file)
@@ -155,7 +155,11 @@ struct comedi_device_struct{
        int iosize;
        int irq;
 
-       wait_queue_head_t wait;
+       unsigned int read_subdev;
+       wait_queue_head_t read_wait;
+
+       unsigned int write_subdev;
+       wait_queue_head_t write_wait;
 };