ioctl.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id: ioctl.h,v 1.2 1999/12/29 22:18:15 willy Exp $
  2.  *
  3.  * linux/ioctl.h for Linux by H.H. Bergman.
  4.  */
  5. #ifndef _ASM_PARISC_IOCTL_H
  6. #define _ASM_PARISC_IOCTL_H
  7. /* ioctl command encoding: 32 bits total, command in lower 16 bits,
  8.  * size of the parameter structure in the lower 14 bits of the
  9.  * upper 16 bits.
  10.  * Encoding the size of the parameter structure in the ioctl request
  11.  * is useful for catching programs compiled with old versions
  12.  * and to avoid overwriting user space outside the user buffer area.
  13.  * The highest 2 bits are reserved for indicating the ``access mode''.
  14.  * NOTE: This limits the max parameter size to 16kB -1 !
  15.  */
  16. #define _IOC_NRBITS 8
  17. #define _IOC_TYPEBITS 8
  18. #define _IOC_SIZEBITS 14
  19. #define _IOC_DIRBITS 2
  20. #define _IOC_NRMASK ((1 << _IOC_NRBITS)-1)
  21. #define _IOC_TYPEMASK ((1 << _IOC_TYPEBITS)-1)
  22. #define _IOC_SIZEMASK ((1 << _IOC_SIZEBITS)-1)
  23. #define _IOC_DIRMASK ((1 << _IOC_DIRBITS)-1)
  24. #define _IOC_NRSHIFT 0
  25. #define _IOC_TYPESHIFT (_IOC_NRSHIFT+_IOC_NRBITS)
  26. #define _IOC_SIZESHIFT (_IOC_TYPESHIFT+_IOC_TYPEBITS)
  27. #define _IOC_DIRSHIFT (_IOC_SIZESHIFT+_IOC_SIZEBITS)
  28. /*
  29.  * Direction bits.
  30.  */
  31. #define _IOC_NONE 0U
  32. #define _IOC_WRITE 2U
  33. #define _IOC_READ 1U
  34. #define _IOC(dir,type,nr,size) 
  35. (((dir)  << _IOC_DIRSHIFT) | 
  36.  ((type) << _IOC_TYPESHIFT) | 
  37.  ((nr)   << _IOC_NRSHIFT) | 
  38.  ((size) << _IOC_SIZESHIFT))
  39. /* used to create numbers */
  40. #define _IO(type,nr) _IOC(_IOC_NONE,(type),(nr),0)
  41. #define _IOR(type,nr,size) _IOC(_IOC_READ,(type),(nr),sizeof(size))
  42. #define _IOW(type,nr,size) _IOC(_IOC_WRITE,(type),(nr),sizeof(size))
  43. #define _IOWR(type,nr,size) _IOC(_IOC_READ|_IOC_WRITE,(type),(nr),sizeof(size))
  44. /* used to decode ioctl numbers.. */
  45. #define _IOC_DIR(nr) (((nr) >> _IOC_DIRSHIFT) & _IOC_DIRMASK)
  46. #define _IOC_TYPE(nr) (((nr) >> _IOC_TYPESHIFT) & _IOC_TYPEMASK)
  47. #define _IOC_NR(nr) (((nr) >> _IOC_NRSHIFT) & _IOC_NRMASK)
  48. #define _IOC_SIZE(nr) (((nr) >> _IOC_SIZESHIFT) & _IOC_SIZEMASK)
  49. /* ...and for the drivers/sound files... */
  50. #define IOC_IN (_IOC_WRITE << _IOC_DIRSHIFT)
  51. #define IOC_OUT (_IOC_READ << _IOC_DIRSHIFT)
  52. #define IOC_INOUT ((_IOC_WRITE|_IOC_READ) << _IOC_DIRSHIFT)
  53. #define IOCSIZE_MASK (_IOC_SIZEMASK << _IOC_SIZESHIFT)
  54. #define IOCSIZE_SHIFT (_IOC_SIZESHIFT)
  55. #endif /* _ASM_PARISC_IOCTL_H */