summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorpluknet <pluknet@FreeBSD.org>2012-04-19 16:13:15 +0000
committerpluknet <pluknet@FreeBSD.org>2012-04-19 16:13:15 +0000
commitbb79f10054e52d5233c22331cb874f1b75576725 (patch)
tree0a4196e43c3c609890390bdf515e4bc75aebf8d9
parent62e631ede24cbb3a09c2799125df9b9e0eac3629 (diff)
downloadFreeBSD-src-bb79f10054e52d5233c22331cb874f1b75576725.zip
FreeBSD-src-bb79f10054e52d5233c22331cb874f1b75576725.tar.gz
- Update the rest of struct ithd references.
- net_ih and softclock_ih cookies have gone away. MFC after: 1 week
-rw-r--r--share/man/man9/swi.923
1 files changed, 9 insertions, 14 deletions
diff --git a/share/man/man9/swi.9 b/share/man/man9/swi.9
index adc5421..831a67e 100644
--- a/share/man/man9/swi.9
+++ b/share/man/man9/swi.9
@@ -36,10 +36,8 @@
.In sys/param.h
.In sys/bus.h
.In sys/interrupt.h
-.Vt "extern struct ithd *tty_ithd" ;
-.Vt "extern struct ithd *clk_ithd" ;
-.Vt "extern void *net_ih" ;
-.Vt "extern void *softclock_ih" ;
+.Vt "extern struct intr_event *tty_intr_event" ;
+.Vt "extern struct intr_event *clk_intr_event" ;
.Vt "extern void *vm_ih" ;
.Ft int
.Fo swi_add
@@ -152,26 +150,23 @@ in earlier versions of
.El
.Pp
The
-.Va tty_ithd
+.Va tty_intr_event
and
-.Va clk_ithd
-variables contain pointers to the software interrupt threads for the tty and
+.Va clk_intr_event
+variables contain pointers to the software interrupt handlers for the tty and
clock software interrupts, respectively.
-.Va tty_ithd
+.Va tty_intr_event
is used to hang tty software interrupt handlers off of the same thread.
-.Va clk_ithd
+.Va clk_intr_event
is used to hang delayed handlers off of the clock software interrupt thread so
that the functionality of
.Fn setdelayed
can be obtained in conjunction with
.Dv SWI_DELAY .
The
-.Va net_ih ,
-.Va softclock_ih ,
-and
.Va vm_ih
-handler cookies are used to schedule software interrupt threads to run for the
-networking stack, clock interrupt, and VM subsystem respectively.
+handler cookie is used to schedule software interrupt threads to run for the
+VM subsystem.
.Sh RETURN VALUES
The
.Fn swi_add
OpenPOWER on IntegriCloud