RISC-V Proxy Kernel
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
791 B

#ifndef _FILE_H
#define _FILE_H
#include <sys/stat.h>
#include <machine/syscall.h>
#include "atomic.h"
typedef struct file
{
int kfd; // file descriptor on the appserver side
atomic_t refcnt;
} file_t;
extern file_t *stdin, *stdout, *stderr;
file_t* file_get(int fd);
sysret_t file_open(const char* fn, size_t len, int flags, int mode);
void file_decref(file_t*);
int file_dup(file_t*);
sysret_t file_pwrite(file_t* f, const char* buf, size_t n, off_t off);
sysret_t file_pread(file_t* f, char* buf, size_t n, off_t off);
sysret_t file_write(file_t* f, const char* buf, size_t n);
sysret_t file_read(file_t* f, char* buf, size_t n);
sysret_t file_stat(file_t* f, struct stat* s);
sysret_t file_lseek(file_t* f, size_t ptr, int dir);
int fd_close(int fd);
void file_init();
#endif