The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/i386/isa/gpib.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 #ifndef _I386_ISA_GPIB_H_
    2 #define _I386_ISA_GPIB_H_
    3 
    4 #include <sys/ioccom.h>
    5 
    6 /* gpib data structures */
    7 struct gpibdata {
    8           char *data;  /* data string for ins and outs  */
    9           unsigned char address; /* gpib address */
   10           int *count;
   11            } ;
   12 
   13 /* IOCTL commands */
   14 #define GPIBWRITE _IOW('g',1,struct gpibdata)
   15 #define GPIBREAD _IOW('g',2,struct gpibdata)
   16 #define GPIBINIT _IOW('g',3,struct gpibdata)
   17 #define GPIBTRIGGER _IOW('g',4,struct gpibdata)
   18 #define GPIBREMOTE _IOW('g',5,struct gpibdata)
   19 #define GPIBLOCAL _IOW('g',6,struct gpibdata)
   20 #define GPIBMTRIGGER _IOW('g',7,struct gpibdata)
   21 #define GPIBMREMOTE _IOW('g',8,struct gpibdata)
   22 #define GPIBMLOCAL _IOW('g',9,struct gpibdata)
   23 #define GPIBSPOLL _IOW('g',10,struct gpibdata)
   24 
   25 #endif /* !_I386_ISA_GPIB_H_ */

Cache object: a3d1d563d782555e854377301881b3c7


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.