1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92
|
.\" -*- nroff -*-
.TH TAPSET::IRQ 3stap "October 2018" "SystemTap Tapset Reference"
.SH NAME
tapset::irq \- systemtap irq tapset
.SH DESCRIPTION
.TP
.P
.TP
.B workqueue.create
Creating a new workqueue
.IP
See
.IR probe::workqueue.create (3stap)
for details.
.P
.TP
.B workqueue.insert
Queuing work on a workqueue
.IP
See
.IR probe::workqueue.insert (3stap)
for details.
.P
.TP
.B workqueue.execute
Executing deferred work
.IP
See
.IR probe::workqueue.execute (3stap)
for details.
.P
.TP
.B workqueue.destroy
Destroying workqueue
.IP
See
.IR probe::workqueue.destroy (3stap)
for details.
.P
.TP
.B irq_handler.entry
Execution of interrupt handler starting
.IP
See
.IR probe::irq_handler.entry (3stap)
for details.
.P
.TP
.B irq_handler.exit
Execution of interrupt handler completed
.IP
See
.IR probe::irq_handler.exit (3stap)
for details.
.P
.TP
.B softirq.entry
Execution of handler for a pending softirq starting
.IP
See
.IR probe::softirq.entry (3stap)
for details.
.P
.TP
.B softirq.exit
Execution of handler for a pending softirq completed
.IP
See
.IR probe::softirq.exit (3stap)
for details.
.SH SEE ALSO
.BR
.IR \%probe::workqueue.create (3stap),
.BR
.IR \%probe::workqueue.insert (3stap),
.BR
.IR \%probe::workqueue.execute (3stap),
.BR
.IR \%probe::workqueue.destroy (3stap),
.BR
.IR \%probe::irq_handler.entry (3stap),
.BR
.IR \%probe::irq_handler.exit (3stap),
.BR
.IR \%probe::softirq.entry (3stap),
.BR
.IR \%probe::softirq.exit (3stap),
.BR
.IR \%stap (1),
.IR \%stapprobes (3stap)
|