Add dev_delhandle() syscall to delete a device handle from process resources

This commit is contained in:
2025-11-08 16:24:04 +01:00
parent 2fa77d073f
commit e0162e9e0b
6 changed files with 26 additions and 0 deletions

View File

@ -9,5 +9,6 @@ int32_t SYSCALL2(sys_dev_gethandle, dev1, devname1);
int32_t SYSCALL0(sys_dev_listsize);
int32_t SYSCALL2(sys_dev_stat, devstat1, idx1);
int32_t SYSCALL4(sys_dev_cmd, dev1, cmd1, argbuf1, len1);
int32_t SYSCALL1(sys_dev_delhandle, dev1);
#endif // SYSCALL_DEV_H_