概述 内核中驱动文件的操作通常是通过write和read函数进行的,但是很多时候再用户空间进行的操作或许不是内核中公共代码部分提供的功能,此时就需要使用一种个性化的方法进行操作--ioctl系统调用. ioctl系统调用是一种用于设备控制的公共接口,主要分为两种,一种是用户空间使用的ioctl系统调用,函数原型为: int ioctl(int fd,unsigned long cmd,...); 另一种是在内核空间使用的ioctl调用,函数原型为: int (*ioctl)(struct ino…
6.1 fcntl 函数 6.1.1 函数介绍 #include <unistd.h> #include <fcntl.h> int fcntl(int fd, int cmd); int fcntl(int fd, int cmd, long arg); int fcntl(int fd, int cmd, struct flock * lock); 函数说明:fcntl()用来操作文件描述词的一些特性. 函数功能:可以改变已经打开文件的性质 参数说明 @fd:代表欲设置的文件描…