RISC-V: Moved syscalls to separate files to fix aliasing problems.

This commit is contained in:
Jim Wilson
2017-12-26 12:27:52 -08:00
parent 347b083911
commit 28d5b98038
37 changed files with 513 additions and 450 deletions

14
libgloss/riscv/sys_stat.c Normal file
View File

@ -0,0 +1,14 @@
#include <machine/syscall.h>
#include "kernel_stat.h"
#include "internal_syscall.h"
/* Status of a file (by name). */
int
_stat(const char *file, struct stat *st)
{
struct kernel_stat kst;
int rv = syscall_errno (SYS_stat, file, &kst, 0, 0, 0, 0);
_conv_stat (st, &kst);
return rv;
}