view src/interface/SysClose.h @ 156:18a432ac4f9f

add Syscall close
author tobaru
date Fri, 20 Dec 2019 16:05:31 +0900
parents
children e8b76f16de1a
line wrap: on
line source

typedef struct SysClose<Type, Impl>{
    int fd;
    struct file *f;

    __code close(int fd, struct file *f, __code next(...));

} SysClose;