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.

35 lines
872 B

13 years ago
// See LICENSE for license details.
#ifndef _FILE_H
#define _FILE_H
#include <sys/stat.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);
file_t* file_open(const char* fn, int flags, int mode);
void file_decref(file_t*);
void file_incref(file_t*);
int file_dup(file_t*);
file_t* file_openat(int dirfd, const char* fn, int flags, int mode);
ssize_t file_pwrite(file_t* f, const void* buf, size_t n, off_t off);
ssize_t file_pread(file_t* f, void* buf, size_t n, off_t off);
ssize_t file_write(file_t* f, const void* buf, size_t n);
ssize_t file_read(file_t* f, void* buf, size_t n);
ssize_t file_lseek(file_t* f, size_t ptr, int dir);
int file_stat(file_t* f, struct stat* s);
int fd_close(int fd);
void file_init();
#endif