Add a retries counter to abuf

This commit is contained in:
jmc 2001-05-13 05:02:08 +00:00
parent 880b3e6a6f
commit 3790f44eac
1 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: ieee1394var.h,v 1.8 2001/05/11 06:03:55 jmc Exp $ */
/* $NetBSD: ieee1394var.h,v 1.9 2001/05/13 05:02:08 jmc Exp $ */
/*-
* Copyright (c) 2000 The NetBSD Foundation, Inc.
@ -55,6 +55,7 @@ struct ieee1394_abuf {
u_int8_t ab_tlabel;
u_int16_t ab_length;
u_int16_t ab_retlen; /* length returned from read. */
u_int32_t ab_retries;
void (*ab_cb)(struct ieee1394_abuf *, int);
void (*ab_ackcb)(struct ieee1394_abuf *, int);
void *ab_cbarg;