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

14 lines
338 B
C

#ifndef SYSCALL_DEV_H_
#define SYSCALL_DEV_H_
#include <stdint.h>
#include <stddef.h>
#include "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 SYSCALL5(sys_dev_cmd, dev1, cmd1, argbuf1, len1, extra1);
#endif // SYSCALL_DEV_H_