Rev 1698 | Rev 1757 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 1698 | Rev 1702 | ||
|---|---|---|---|
| Line 24... | Line 24... | ||
| 24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
24 | * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 27 | */ |
27 | */ |
| 28 | 28 | ||
| - | 29 | /** @addtogroup genericipc |
|
| - | 30 | * @{ |
|
| - | 31 | */ |
|
| - | 32 | /** @file |
|
| - | 33 | */ |
|
| - | 34 | ||
| 29 | /** IRQ notification framework |
35 | /** IRQ notification framework |
| 30 | * |
36 | * |
| 31 | * This framework allows applications to register to receive a notification |
37 | * This framework allows applications to register to receive a notification |
| 32 | * when interrupt is detected. The application may provide a simple 'top-half' |
38 | * when interrupt is detected. The application may provide a simple 'top-half' |
| 33 | * handler as part of its registration, which can perform simple operations |
39 | * handler as part of its registration, which can perform simple operations |
| Line 325... | Line 331... | ||
| 325 | irq_conns[i].box = NULL; |
331 | irq_conns[i].box = NULL; |
| 326 | spinlock_unlock(&irq_conns[i].lock); |
332 | spinlock_unlock(&irq_conns[i].lock); |
| 327 | interrupts_restore(ipl); |
333 | interrupts_restore(ipl); |
| 328 | } |
334 | } |
| 329 | } |
335 | } |
| - | 336 | ||
| - | 337 | /** @} |
|
| - | 338 | */ |
|
| - | 339 | ||