xrpuio.h
来自「基于组件方式开发操作系统的OSKIT源代码」· C头文件 代码 · 共 38 行
H
38 行
/* * ---------------------------------------------------------------------------- * "THE BEER-WARE LICENSE" (Revision 42): * <phk@FreeBSD.org> wrote this file. As long as you retain this notice you * can do whatever you want with this stuff. If we meet some day, and you think * this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp * ---------------------------------------------------------------------------- * * $Id: xrpuio.h,v 1.1 1998/10/24 19:47:29 phk Exp $ * */#ifndef _SYS_XRPUIO_H_#define _SYS_XRPUIO_H_#include <sys/ioccom.h>#define XRPU_MAX_PPS 16struct xrpu_timecounting { /* The timecounter itself */ u_int xt_addr_trigger; u_int xt_addr_latch; unsigned xt_mask; u_int32_t xt_frequency; char xt_name[16]; /* The PPS latches */ struct { u_int xt_addr_assert; u_int xt_addr_clear; } xt_pps[XRPU_MAX_PPS];};#define XRPU_IOC_TIMECOUNTING _IOW('6', 1, struct xrpu_timecounting)#endif /* _SYS_XRPUIO_H_ */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?