⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ioctl.h

📁 Minix3.11的源码。[MINIX 3是一个为高可靠性应用而设计的自由且简洁的类UNIX系统。]
💻 H
字号:
/*	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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -