ioctl.h

来自「Minix3.11的源码。[MINIX 3是一个为高可靠性应用而设计的自由且简洁」· C头文件 代码 · 共 27 行

H
27
字号
/*	sys/ioctl.h - All ioctl() command codes.	Author: Kees J. Bot *								23 Nov 2002 * * This header file includes all other ioctl command code headers. */#ifndef _S_IOCTL_H#define _S_IOCTL_H/* A driver that uses ioctls claims a character for its series of commands. * For instance:  #define TCGETS  _IOR('T',  8, struct termios) * This is a terminal ioctl that uses the character 'T'.  The character(s) * used in each header file are shown in the comment following. */#include <sys/ioc_tty.h>	/* 'T' 't' 'k'		*/#include <net/ioctl.h>		/* 'n'			*/#include <sys/ioc_disk.h>	/* 'd'			*/#include <sys/ioc_file.h>	/* 'f'			*/#include <sys/ioc_memory.h>	/* 'm'			*/#include <sys/ioc_cmos.h>	/* 'c'			*/#include <sys/ioc_tape.h>	/* 'M'			*/#include <sys/ioc_scsi.h>	/* 'S'			*/#include <sys/ioc_sound.h>	/* 's'			*/#endif /* _S_IOCTL_H */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?