apio
9b39d618de
This function is a Luna alternative to fork() and exec(). Why? Simply because I can't figure out for the life of me how to implement a working fork(). So meanwhile, we have spawn() as a replacement. exec() still exists, though.
42 lines
1.2 KiB
C
42 lines
1.2 KiB
C
#ifndef _LUNA_SYSCALL_H
|
|
#define _LUNA_SYSCALL_H
|
|
|
|
#define SYS_exit 0
|
|
#define SYS_yield 1
|
|
#define SYS_sleep 2
|
|
#define SYS_write 3
|
|
#define SYS_paint 4
|
|
#define SYS_gettid 5
|
|
#define SYS_mmap 6
|
|
#define SYS_munmap 7
|
|
#define SYS_open 8
|
|
#define SYS_read 9
|
|
#define SYS_close 10
|
|
#define SYS_seek 11
|
|
#define SYS_exec 12
|
|
#define SYS_fcntl 13
|
|
#define SYS_mprotect 14
|
|
#define SYS_clock 15
|
|
#define SYS_spawn 16
|
|
#define SYS_mkdir 17
|
|
|
|
#ifndef __want_syscalls
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
|
|
long int __luna_syscall0(long int sys_num);
|
|
long int __luna_syscall1(long int sys_num, unsigned long int arg0);
|
|
long int __luna_syscall2(long int sys_num, unsigned long int arg0, unsigned long int arg1);
|
|
long int __luna_syscall3(long int sys_num, unsigned long int arg0, unsigned long int arg1, unsigned long int arg2);
|
|
long int __luna_syscall4(long int sys_num, unsigned long int arg0, unsigned long int arg1, unsigned long int arg2,
|
|
unsigned long int arg3);
|
|
long int __luna_syscall5(long int sys_num, unsigned long int arg0, unsigned long int arg1, unsigned long int arg2,
|
|
unsigned long int arg3, unsigned long int arg4);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif
|
|
#endif |