sockios.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * Socket-level I/O control calls.
  3.  *
  4.  * This file is subject to the terms and conditions of the GNU General Public
  5.  * License.  See the file "COPYING" in the main directory of this archive
  6.  * for more details.
  7.  *
  8.  * Copyright (C) 1995 by Ralf Baechle
  9.  */
  10. #ifndef __ASM_MIPS_SOCKIOS_H
  11. #define __ASM_MIPS_SOCKIOS_H
  12. #include <asm/ioctl.h>
  13. /* Socket-level I/O control calls. */
  14. #define FIOGETOWN _IOR('f', 123, int)
  15. #define FIOSETOWN  _IOW('f', 124, int)
  16. #define SIOCATMARK _IOR('s', 7, int)
  17. #define SIOCSPGRP _IOW('s', 8, pid_t)
  18. #define SIOCGPGRP _IOR('s', 9, pid_t)
  19. #define SIOCGSTAMP 0x8906 /* Get stamp - linux-specific */
  20. #endif /* __ASM_MIPS_SOCKIOS_H */