mirror of
https://github.com/drasko/codezero.git
synced 2026-01-12 02:43:15 +01:00
15 lines
430 B
C
15 lines
430 B
C
/*
|
|
* System call function signatures.
|
|
*
|
|
* Copyright (C) 2007, 2008 Bahadir Balban
|
|
*/
|
|
#ifndef __FS0_SYSCALLS_H__
|
|
#define __FS0_SYSCALLS_H__
|
|
|
|
int sys_open(l4id_t sender, char *pathname, int flags, u32 mode);
|
|
int sys_read(l4id_t sender, int fd, void *buf, int cnt);
|
|
int sys_write(l4id_t sender, int fd, void *buf, int cnt);
|
|
int sys_lseek(l4id_t sender, int fd, unsigned long offset, int whence);
|
|
|
|
#endif /* __FS0_SYSCALLS_H__ */
|