Subversion Repositories HelenOS-historic

Rev

Rev 1693 | Rev 1712 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1693 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
#ifndef __IRQ_H__
35
#ifndef __IRQ_H__
30
#define __IRQ_H__
36
#define __IRQ_H__
31
 
37
 
32
/** Maximum length of IPC IRQ program */
38
/** Maximum length of IPC IRQ program */
33
#define IRQ_MAX_PROG_SIZE 10
39
#define IRQ_MAX_PROG_SIZE 10
Line 78... Line 84...
78
extern void ipc_irq_cleanup(answerbox_t *box);
84
extern void ipc_irq_cleanup(answerbox_t *box);
79
 
85
 
80
#endif
86
#endif
81
 
87
 
82
#endif
88
#endif
-
 
89
 
-
 
90
 /** @}
-
 
91
 */
-
 
92