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

📄 syncstat.h

📁 操作系统SunOS 4.1.3版本的源码
💻 H
字号:
/* @(#)syncstat.h 1.1 92/07/30 SMI; from UCB 4.34 83/06/13      *//* * Copyright (c) 1985 by Sun Microsystems, Inc. *//* * Statistics for synchronous serial lines Each structure must be kept under * 16 bytes to work with the awful ifreq ioctl kludge AAARRRGGGH! *  * This file is shared between the main CPU and the DCP board, so we use longs * instead of ints for portability. *//* data stats */struct ss_dstats {    long            ssd_ipack;		       /* input packets */    long            ssd_opack;		       /* output packets */    long            ssd_ichar;		       /* input bytes */    long            ssd_ochar;		       /* output bytes */};/* error stats */struct ss_estats {    long            sse_abort;		       /* abort received */    long            sse_crc;		       /* CRC error */    long            sse_overrun;	       /* receiver overrun */    long            sse_underrun;	       /* xmitter underrun */};

⌨️ 快捷键说明

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