diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2006-11-05 14:39:33 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2006-11-05 14:39:33 +0000 |
commit | 4947185b2e79d3035f39094f7759f956ce5230c4 (patch) | |
tree | 673ba15be18c04adfefeb1c5d127746bdcf9576b /sys/dev/hil/hilvar.h | |
parent | 7ce00e21ff6fb86cf4936fda8ea32f78f3364f6c (diff) |
Handle loop reconfiguration in a kernel thread, instead of doing it from
interrupt context.
Diffstat (limited to 'sys/dev/hil/hilvar.h')
-rw-r--r-- | sys/dev/hil/hilvar.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/hil/hilvar.h b/sys/dev/hil/hilvar.h index 8b7c1ef0738..816b0280b61 100644 --- a/sys/dev/hil/hilvar.h +++ b/sys/dev/hil/hilvar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: hilvar.h,v 1.9 2005/12/22 07:09:52 miod Exp $ */ +/* $OpenBSD: hilvar.h,v 1.10 2006/11/05 14:39:32 miod Exp $ */ /* * Copyright (c) 2003, Miodrag Vallat. * All rights reserved. @@ -74,6 +74,8 @@ struct hil_softc { bus_space_tag_t sc_bst; int *sc_console; /* console path set to hil */ + struct proc *sc_thread; /* event handling thread */ + int sc_cmddone; int sc_cmdending; u_int sc_actdev; /* current input device */ |