9 lines
195 B
C
9 lines
195 B
C
#include <kernel/sched.h>
|
|
#include <kernel/syscall.h>
|
|
|
|
kern_status_t sys_kern_handle_close(kern_handle_t handle)
|
|
{
|
|
struct task *self = current_task();
|
|
return task_close_handle(self, handle);
|
|
}
|