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 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
|
<HTML
><HEAD
><TITLE
>rtl_free_soft_irq</TITLE
><META
NAME="GENERATOR"
CONTENT="Modular DocBook HTML Stylesheet Version 1.64
"></HEAD
><BODY
CLASS="REFENTRY"
><H1
><A
NAME="AEN1"
>rtl_free_soft_irq</A
></H1
><DIV
CLASS="REFNAMEDIV"
><A
NAME="AEN5"
></A
><H2
>Name</H2
>rtl_free_soft_irq, rtl_get_soft_irq -- install and remove software interrupt handlers</DIV
><DIV
CLASS="REFSYNOPSISDIV"
><A
NAME="AEN9"
></A
><H2
>Synopsis</H2
><TABLE
BORDER="0"
BGCOLOR="#E0E0E0"
WIDTH="100%"
><TR
><TD
><PRE
CLASS="SYNOPSIS"
> #include <rtl_core.h.h>
int <TT
CLASS="FUNCTION"
>rtl_get_soft_irq</TT
>(void (*<TT
CLASS="PARAMETER"
><I
>handler</I
></TT
>)(int, void *, struct pt_regs *), const char * <TT
CLASS="PARAMETER"
><I
>devname</I
></TT
>);
void <TT
CLASS="FUNCTION"
>rtl_free_soft_irq</TT
>(unsigned int <TT
CLASS="PARAMETER"
><I
>irq</I
></TT
>);</PRE
></TD
></TR
></TABLE
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN16"
></A
><H2
>DESCRIPTION</H2
><P
>These functions are specific to Realtime Linux.</P
><P
><TT
CLASS="FUNCTION"
>rtl_get_soft_irq</TT
> allocates a software interrupt vector and registers the function <TT
CLASS="FUNCTION"
>handler</TT
> as the interrupt handler for the allocated software interrupt. The devname string is shown in /proc/interrupts for every soft interrupt handler installed. The software interrupt can later be triggered by the <TT
CLASS="FUNCTION"
>rtl_global_pend_irq(3)</TT
> function.</P
><P
><TT
CLASS="FUNCTION"
>rtl_free_soft_irq</TT
> uninstalls the specified software interrupt handler.</P
><P
>The software interrupt handler will be executed in the Linux kernel context so it can call any functions that are normally allowed to be called from Linux interrupt handlers.</P
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN26"
></A
><H2
>RETURN VALUE</H2
><P
><TT
CLASS="FUNCTION"
>rtl_get_soft_irq</TT
> returns the allocated vector number on success and a negative error code on error.</P
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN30"
></A
><H2
>ERRORS</H2
><P
></P
><DIV
CLASS="VARIABLELIST"
><DL
><DT
>-EBUSY</DT
><DD
><P
><TT
CLASS="FUNCTION"
>rtl_get_soft_irq</TT
>: Could not allocate a software interrupt vector.</P
></DD
></DL
></DIV
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN38"
></A
><H2
>NOTES</H2
><P
>These functions can only be called in the Linux kernel mode.</P
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN41"
></A
><H2
>AUTHOR</H2
><P
>Michael Barabanov (<A
HREF="mailto:baraban@fsmlabs.com"
TARGET="_top"
>baraban@fsmlabs.com</A
>)</P
></DIV
><DIV
CLASS="REFSECT1"
><A
NAME="AEN45"
></A
><H2
>SEE ALSO</H2
><A
HREF="rtl_global_pend_irq.3.html"
TARGET="_top"
>rtl_global_pend_irq</A
><P
>2001 FSMLabs Inc.</P
><P
>All rights reserved.</P
></DIV
></BODY
></HTML
>
|