Files
my-os-project2/kernel/syscall/dev.h

15 lines
381 B
C

#ifndef SYSCALL_DEV_H_
#define SYSCALL_DEV_H_
#include <stdint.h>
#include <stddef.h>
#include "syscall/syscall.h"
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_