metal-cos/include/syscall.h

33 lines
792 B
C
Raw Normal View History

#ifndef __SYSCALL_H__
#define __SYSCALL_H__
#include <sys/stat.h>
2015-01-02 22:04:14 +00:00
uint64_t OSTime();
void OSExit(int status);
uint64_t OSGetPID();
uint64_t OSSpawn(const char *path);
// Memory
2015-01-02 22:04:14 +00:00
void *OSMemMap(void *addr, uint64_t len, int flags);
int OSMemUnmap(void *addr, uint64_t len);
int OSMemProtect(void *addr, uint64_t len, int flags);
2014-10-14 23:24:47 +00:00
// IO
2015-01-02 22:04:14 +00:00
int OSRead(uint64_t fd, void *addr, uint64_t off, uint64_t length);
int OSWrite(uint64_t fd, const void *addr, uint64_t off, uint64_t length);
int OSFlush(uint64_t fd);
uint64_t OSOpen(const char *path, uint64_t flags);
int OSClose(uint64_t fd);
2014-10-14 23:24:47 +00:00
// Directory
2015-01-02 22:04:14 +00:00
int OSStat(const char *path, struct stat *sb);
int OSReadDir(uint64_t fd, char *buf, size_t length, uint64_t *offset);
2014-11-29 23:46:17 +00:00
// Threads
2015-01-02 22:04:14 +00:00
int OSThreadSleep(uint64_t time);
2014-11-29 23:46:17 +00:00
#endif /* __SYSCALL_H__ */