diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2007-01-31 14:35:52 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2007-01-31 14:35:52 +0000 |
commit | 165bb8caa64814e5ac6edf8a826a2d23022318ea (patch) | |
tree | aca5e241ea95304bed6c5c6620418a324597f724 /sys/dev/ic/pckbcvar.h | |
parent | 01bba060c1c2ba34596d2b3b6b2dbead70d00ab0 (diff) |
run a timeout (calling intr handler) to recover from in buffer oflows that make no ints; w/ help from miod@ and ok miod@
Diffstat (limited to 'sys/dev/ic/pckbcvar.h')
-rw-r--r-- | sys/dev/ic/pckbcvar.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/ic/pckbcvar.h b/sys/dev/ic/pckbcvar.h index 321cb8aa375..e5db6e5f54a 100644 --- a/sys/dev/ic/pckbcvar.h +++ b/sys/dev/ic/pckbcvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: pckbcvar.h,v 1.4 2004/11/02 21:21:00 miod Exp $ */ +/* $OpenBSD: pckbcvar.h,v 1.5 2007/01/31 14:35:51 mickey Exp $ */ /* $NetBSD: pckbcvar.h,v 1.4 2000/06/09 04:58:35 soda Exp $ */ /* @@ -57,6 +57,7 @@ struct pckbc_internal { struct pckbc_softc *t_sc; /* back pointer */ struct timeout t_cleanup; + struct timeout t_poll; }; typedef void (*pckbc_inputfcn)(void *, int); |