blob: 3aa040eb55a1364dea59ca3fe104e3a6baf7c0ed (
plain) (
blame)
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
|
/* SPDX-License-Identifier: copyleft-next-0.3.1 */
/**
* @file irq.c
* IRQ request syscall handling implementation.
*/
#include <kmi/uapi.h>
#include <kmi/irq.h>
/**
* Actual IRQ handling request syscall handler.
*
* @param t Current tcb.
* @param id IRQ id to request to handle.
*
* @return OK on success, non-zero otherwise.
*/
SYSCALL_DEFINE1(irq_req)(struct tcb *t, sys_arg_t id)
{
if (!has_cap(t->caps, CAP_IRQ))
return_args1(t, ERR_PERM);
if (!t->callback)
return_args1(t, ERR_NF);
return_args1(t, register_irq(t, id));
}
|