21 lines
466 B
C
21 lines
466 B
C
/* Copyright (c) 1984 AT&T */
|
|
/* All Rights Reserved */
|
|
|
|
/* THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T */
|
|
/* The copyright notice above does not evidence any */
|
|
/* actual or intended publication of such source code. */
|
|
|
|
/*#ident "@(#)kern-port:sys/trace.h 10.1"*/
|
|
#ident "$Revision: 3.4 $"
|
|
/*
|
|
* Per trace structure
|
|
*/
|
|
struct trace {
|
|
struct clist tr_outq;
|
|
short tr_state;
|
|
short tr_chbits;
|
|
short tr_rcnt;
|
|
unsigned char tr_chno;
|
|
char tr_ct;
|
|
};
|