freebsd-dev/sys/i386/include/intrcnt.h
Thomas Moestl 368d2edce4 Export intrnames and intrcnt as sysctls (hw.nintr, hw.intrnames and
hw.intrcnt).

Approved by:	rwatson
2001-03-23 03:45:17 +00:00

14 lines
326 B
C

/* $FreeBSD$ */
#include <i386/isa/icu.h>
#define INTRCNT_COUNT (1 + ICU_LEN + 2 * ICU_LEN)
#ifdef _KERNEL
#ifndef LOCORE
extern u_long intrcnt[]; /* counts for for each device and stray */
extern char intrnames[]; /* string table containing device names */
extern char eintrnames[]; /* end of intrnames[] */
#endif
#endif