Linux下用户空间访问I/O端口的相关函数
Linux下设置端口权限的系统调用有两个:ioperm和iopl函数。ioperm功能描述函数原型#include <unistd.h>/* for libc5 */#include <sys/io.h>/* for glibc */int ioperm(unsigned long from, unsigned long num, int turn_on);返回值成功返回0;失败返回-1,并且errno被设为以下的某个值EINVAL:I..